import 'package:flutter/cupertino.dart'; import 'package:flutter/material.dart'; import 'package:provider/provider.dart'; import 'package:zhiying_base_widget/pages/setting_page/models/setting_page_style_item_model.dart'; import 'package:zhiying_base_widget/pages/setting_page/models/setting_page_style_model.dart'; import 'package:zhiying_base_widget/pages/setting_page/setting_page_bloc.dart'; import 'package:zhiying_comm/util/base_bloc.dart'; import 'package:zhiying_comm/zhiying_comm.dart'; class SettingPage extends StatefulWidget { final Map data; const SettingPage(this.data, {Key key}) : super(key: key); @override _SettingPageState createState() => _SettingPageState(); } class _SettingPageState extends State { @override Widget build(BuildContext context) { return BlocProvider( bloc: SettingPageBloc(), child: _SettingContainer(widget.data), ); } } class _SettingContainer extends StatefulWidget { final Map data; const _SettingContainer( this.data, { Key key, }) : super(key: key); @override _SettingContainerState createState() => _SettingContainerState(); } class _SettingContainerState extends State<_SettingContainer> { SettingPageBloc _bloc; @override void initState() { _bloc = BlocProvider.of(context); // if(!EmptyUtil.isEmpty(widget.data)) { _bloc.loadData(widget.data['skip_identifier']); // } super.initState(); } @override Widget build(BuildContext context) { return StreamBuilder( stream: _bloc.outData, builder: (BuildContext context, AsyncSnapshot snapshot) { SettingPageStyleModel style = snapshot.data; List widgets = List(); widgets.addAll(style?.settings?.map((list) { return _createSection(list); })?.toList() ?? []); UserInfoModel user = Provider.of(context).userInfo; if (user != null && (user.token != null && user.token != '')) { widgets.add(_createLogout()); } return Scaffold( backgroundColor: Color(0xfff9f9f9), appBar: _createNav(style), body: SingleChildScrollView( child: Column( children: widgets, ), )); }); } // 导航栏 Widget _createNav(SettingPageStyleModel style) { return CupertinoNavigationBar( border: Border( bottom: BorderSide( width: 0.0, // One physical pixel. style: BorderStyle.none, ), ), backgroundColor: HexColor.fromHex(style?.appBarBgColor ?? '#ffffff'), leading: Navigator.canPop(context) ? GestureDetector( child: Container( padding: EdgeInsets.zero, child: Icon( Icons.arrow_back_ios, size: 20, ), ), onTap: () { if (Navigator.canPop(context)) { Navigator.pop(context); } }, ) : Container(), middle: Text( style?.appBarName ?? '设置', style: TextStyle( fontSize: 15, color: HexColor.fromHex(style?.appBarNameColor ?? '#333333'), ), ), ); } Widget _createSection(List sections) { return Container( margin: EdgeInsets.only(top: 8), child: Column( children: sections.map((item) { return _createItem(item); }).toList(), ), ); } Widget _createItem(SettingPageStyleItemModel item) { return GestureDetector( child: Container( padding: EdgeInsets.only(left: 12.5, right: 12.5), width: double.infinity, height: 50, color: Colors.white, child: Row( children: [ Expanded( child: Text( item.name, style: TextStyle( fontSize: 13, color: HexColor.fromHex(item?.nameColor ?? '#333333'), fontWeight: FontWeight.bold, ), ), ), Expanded( child: Text( item.desc, textAlign: TextAlign.right, style: TextStyle( fontSize: 13, color: HexColor.fromHex(item?.descColor ?? '#333333'), ), ), ), Icon( Icons.arrow_forward_ios, size: 14, color: Color(0xff999999), ) ], ), ), onTap: () { RouterUtil.route(item, item.toJson(), context).then((value) { if(value!=null&&value){ Navigator.maybePop(context); } }); }, ); } Widget _createLogout() { return GestureDetector( child: Container( color: Colors.white, width: double.infinity, height: 50, margin: EdgeInsets.only(top: 10), child: Center( child: Text( '退出登录', style: TextStyle( fontSize: 13, color: Color(0xffff4242), fontWeight: FontWeight.bold, ), ), ), ), onTap: () async{ Logger.debug('退出登录'); await Provider.of(context, listen: false).unLogin(); Navigator.maybePop(context); }, ); } }