基础组件库
 
 
 
 
 

336 lines
13 KiB

  1. import 'dart:convert';
  2. import 'package:flutter/cupertino.dart';
  3. import 'package:flutter/material.dart';
  4. import 'package:tab_indicator_styler/tab_indicator_styler.dart';
  5. import 'package:zhiying_base_widget/dialog/tip_dialog/tip_dialog.dart';
  6. import 'package:zhiying_base_widget/widgets/wallet/wallet_detail/model/wallet_detail_model.dart';
  7. import 'package:zhiying_base_widget/widgets/wallet/wallet_detail/wallet_detail_bloc.dart';
  8. import 'package:zhiying_base_widget/widgets/wallet/wallet_detail/wallet_detail_sk.dart';
  9. import 'package:cached_network_image/cached_network_image.dart';
  10. import 'package:zhiying_comm/zhiying_comm.dart';
  11. class WalletDetail extends StatefulWidget {
  12. final Map<String, dynamic> data;
  13. const WalletDetail(
  14. this.data, {
  15. Key key,
  16. }) : super(key: key);
  17. @override
  18. _WalletDetailState createState() => _WalletDetailState();
  19. }
  20. class _WalletDetailState extends State<WalletDetail> with TickerProviderStateMixin {
  21. WalletDetailModel _model;
  22. TabController _tabController;
  23. WalletDetailBloc _bloc;
  24. @override
  25. void initState() {
  26. if (widget.data != null) {
  27. _model = WalletDetailModel.fromJson(json.decode(widget.data['data']));
  28. _tabController = TabController(length: _model.providers.length, vsync: this);
  29. }
  30. _bloc = new WalletDetailBloc();
  31. _bloc.loadData(_model.providers[0].type);
  32. super.initState();
  33. }
  34. @override
  35. Widget build(BuildContext context) {
  36. return StreamBuilder(
  37. stream: _bloc.outData,
  38. builder: (context, asyn) {
  39. if (_bloc.listDataModel.length == 0) {
  40. ///骨架图
  41. return WalletDetailSkeleton();
  42. }
  43. return Container(
  44. decoration: BoxDecoration(color: Colors.white, borderRadius: BorderRadius.circular(8)),
  45. margin: EdgeInsets.only(left: 12.5, right: 12.5, top: 7.5, bottom: 7.5),
  46. padding: const EdgeInsets.only(bottom: 13),
  47. child: Column(
  48. crossAxisAlignment: CrossAxisAlignment.start,
  49. children: <Widget>[
  50. Container(
  51. padding: EdgeInsets.only(top: 12),
  52. child: TabBar(
  53. indicatorWeight: 3,
  54. indicator: MaterialIndicator(
  55. height: 2,
  56. bottomLeftRadius: 1,
  57. bottomRightRadius: 1,
  58. horizontalPadding: 0,
  59. topLeftRadius: 1,
  60. topRightRadius: 1,
  61. color: HexColor.fromHex(_model.providers[0].selectColor),
  62. ),
  63. isScrollable: true,
  64. unselectedLabelColor: HexColor.fromHex(_model.providers[0].unselectColor),
  65. labelColor: HexColor.fromHex(_model.providers[0].selectColor),
  66. controller: _tabController,
  67. indicatorColor: HexColor.fromHex(_model.providers[0].selectColor),
  68. indicatorSize: TabBarIndicatorSize.label,
  69. onTap: (index) {
  70. ///变更平台
  71. changeProvider(_model.providers[index].type);
  72. },
  73. tabs: _buildTabs()),
  74. ),
  75. ///日期选择
  76. Container(
  77. height: 50,
  78. alignment: Alignment.center,
  79. child: ListView.builder(
  80. padding: EdgeInsets.only( left: 8),
  81. itemCount: _model.dateList.length,
  82. scrollDirection: Axis.horizontal,
  83. itemBuilder: _buildTimeItem,
  84. ),
  85. ),
  86. /// 数据
  87. Container(
  88. height: 63,
  89. margin: EdgeInsets.only(top: 16, left: 15, right: 15),
  90. width: double.infinity,
  91. decoration: BoxDecoration(image: DecorationImage(image: CachedNetworkImageProvider(_model.providerDashbord.finish.bgImg), fit: BoxFit.fill)),
  92. child: Column(
  93. mainAxisAlignment: MainAxisAlignment.center,
  94. children: <Widget>[
  95. _model.providerDashbord.finish.isShow == "1"
  96. ? Container()
  97. : Padding(
  98. padding: const EdgeInsets.all(8.0),
  99. child: Text(
  100. _model.providerDashbord.finish.text,
  101. style: TextStyle(fontSize: 14, color: HexColor.fromHex(_model.providerDashbord.finish.textColor)),
  102. ),
  103. ),
  104. Row(
  105. mainAxisAlignment: MainAxisAlignment.center,
  106. children: <Widget>[
  107. Text(
  108. _model.providerDashbord.finish.text ?? "",
  109. style: TextStyle(color: Colors.black, fontSize: 11),
  110. ),
  111. InkWell(
  112. child: Padding(
  113. padding: const EdgeInsets.all(8.0),
  114. child: CachedNetworkImage(
  115. imageUrl: _model.providerDashbord.finish.tipIcon ?? "",
  116. width: 10,
  117. height: 10,
  118. fit: BoxFit.fill,
  119. ),
  120. ),
  121. onTap: () {
  122. ///显示弹窗
  123. showTipDialog(null, _model.providerDashbord.finish.tipText);
  124. })
  125. ],
  126. ),
  127. Text(
  128. _bloc.selectDateData.finish ?? "",
  129. style: TextStyle(color: Colors.red, fontSize: 20, fontFamily: 'Din', package: 'zhiying_base_widget', fontWeight: FontWeight.bold),
  130. )
  131. ],
  132. ),
  133. ),
  134. Container(
  135. child: ListView.builder(
  136. padding: EdgeInsets.all(0),
  137. itemCount: 3,
  138. shrinkWrap: true,
  139. physics: NeverScrollableScrollPhysics(),
  140. itemBuilder: (context, index) {
  141. return _buildBottomItem(context, index, _model.providerDashbord);
  142. }),
  143. )
  144. ],
  145. ),
  146. );
  147. },
  148. );
  149. }
  150. ///平台选择
  151. _buildTabs() {
  152. List<Widget> listWidget = List();
  153. for (var item in _model.providers) {
  154. listWidget.add(Text(
  155. item.name,
  156. style: TextStyle(fontSize: 14, ),
  157. ));
  158. }
  159. return listWidget;
  160. }
  161. Widget _buildTimeItem(BuildContext context, int index) {
  162. var item = _model.dateList[index];
  163. return InkWell(
  164. child: Container(
  165. margin: EdgeInsets.only(top: 0, left: 8, right: 8),
  166. decoration: BoxDecoration(
  167. image: DecorationImage(image: CachedNetworkImageProvider(item.type == _bloc.selectDateData.type ? item.btnImg ?? "" : item.btnNoColorImg ?? ""), fit: BoxFit.fitWidth),
  168. ),
  169. child: Padding(
  170. padding: const EdgeInsets.only(left: 16, right: 16),
  171. child: Center(
  172. child: Text(
  173. item.text,
  174. style: TextStyle(fontSize: 11, color: HexColor.fromHex(item.type == _bloc.selectDateData.type ? item.textSelectColor : item.textUnselectColor)),
  175. )),
  176. ),
  177. ),
  178. onTap: () {
  179. for (var select in _bloc.listDataModel) {
  180. if (select.type == item.type) {
  181. _bloc.selectDay = item.type;
  182. _bloc.refresh();
  183. return;
  184. }
  185. }
  186. },
  187. );
  188. }
  189. ///底部显示
  190. Widget _buildBottomItem(BuildContext context, int index, ProviderDashbord dashbord) {
  191. SelfBuy item;
  192. if (index == 0) {
  193. item = dashbord.selfBuy;
  194. } else if (index == 1) {
  195. item = dashbord.directPromote;
  196. } else {
  197. item = dashbord.indirectPromote;
  198. }
  199. var dataMap = _bloc.selectDateData.toJson();
  200. return Container(
  201. child: Column(
  202. children: <Widget>[
  203. SizedBox(
  204. height: 7.5,
  205. ),
  206. item.isShow == "0"
  207. ? Container()
  208. : Text(
  209. item.title,
  210. style: TextStyle(color: HexColor.fromHex(item.titleColor), fontSize: 14),
  211. ),
  212. SizedBox(
  213. height: 7.5,
  214. ),
  215. Row(
  216. mainAxisAlignment: MainAxisAlignment.spaceBetween,
  217. children: <Widget>[
  218. Expanded(
  219. child: Container(
  220. height: 61.5,
  221. margin: EdgeInsets.only(right: 8, left: 15),
  222. padding: EdgeInsets.only(left: 10),
  223. decoration: BoxDecoration(image: DecorationImage(image: CachedNetworkImageProvider(item.itemList[0].bgImg ?? ""), fit: BoxFit.fill)),
  224. child: Column(
  225. mainAxisAlignment: MainAxisAlignment.center,
  226. crossAxisAlignment: CrossAxisAlignment.start,
  227. children: <Widget>[
  228. Row(
  229. children: <Widget>[
  230. Text(
  231. item.itemList[0].text ?? "",
  232. style: TextStyle(fontSize: 11, color: HexColor.fromHex(item.itemList[0].textColor)),
  233. ),
  234. InkWell(
  235. child: Padding(
  236. padding: const EdgeInsets.all(8.0),
  237. child: CachedNetworkImage(
  238. imageUrl: item.itemList[0].tipIcon,
  239. width: 10,
  240. height: 10,
  241. fit: BoxFit.fill,
  242. ),
  243. ),
  244. onTap: () {
  245. //弹窗
  246. showTipDialog(null, item.itemList[0].tipText);
  247. },
  248. )
  249. ],
  250. ),
  251. Text(dataMap[item.itemList[0].vauleKey],
  252. style: TextStyle(
  253. fontFamily: 'Din',
  254. package: 'zhiying_base_widget',
  255. fontWeight: FontWeight.bold,
  256. fontSize: 17,
  257. color: HexColor.fromHex(item.itemList[1].valueColor),
  258. ))
  259. ],
  260. )),
  261. ),
  262. Expanded(
  263. child: Container(
  264. height: 61.5,
  265. margin: EdgeInsets.only(left: 8, right: 15,),
  266. padding: EdgeInsets.only(left: 10),
  267. decoration: BoxDecoration(image: DecorationImage(image: CachedNetworkImageProvider(item.itemList[1].bgImg ?? ""), fit: BoxFit.fill)),
  268. child: Column(
  269. mainAxisAlignment: MainAxisAlignment.center,
  270. crossAxisAlignment: CrossAxisAlignment.start,
  271. children: <Widget>[
  272. Row(
  273. children: <Widget>[
  274. Text(
  275. item.itemList[1].text ?? "",
  276. style: TextStyle(fontSize: 11, color: HexColor.fromHex(item.itemList[1].textColor)),
  277. ),
  278. InkWell(
  279. child: Padding(
  280. padding: const EdgeInsets.all(8.0),
  281. child: CachedNetworkImage(
  282. imageUrl: item.itemList[1].tipIcon,
  283. width: 10,
  284. height: 10,
  285. fit: BoxFit.fill,
  286. ),
  287. ),
  288. onTap: () {
  289. //弹窗
  290. showTipDialog(null, item.itemList[1].tipText);
  291. },
  292. )
  293. ],
  294. ),
  295. Text(
  296. dataMap[item.itemList[1].vauleKey],
  297. style: TextStyle(
  298. fontSize: 17, color: HexColor.fromHex(item.itemList[1].valueColor), fontFamily: 'Din', package: 'zhiying_base_widget', fontWeight: FontWeight.bold),
  299. )
  300. ],
  301. ),
  302. ))
  303. ],
  304. )
  305. ],
  306. ),
  307. );
  308. }
  309. ///变更平台
  310. void changeProvider(String type) {
  311. _bloc.loadData(type);
  312. }
  313. ///显示提示框
  314. void showTipDialog(String title, String content) {
  315. showDialog(context: context, child: TipDialog(content: content));
  316. }
  317. }