BottomBar.dart 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202
  1. import 'package:douyin_demo/main.dart';
  2. import 'package:douyin_demo/pages/sameCity/SameCityPage.dart';
  3. import 'package:douyin_demo/pages/selfHome/HomePage.dart';
  4. import 'package:douyin_demo/providers/PostsGalleryProvider.dart';
  5. import 'package:douyin_demo/providers/RecommendProvider.dart';
  6. import 'package:flutter/material.dart';
  7. import 'package:provider/provider.dart';
  8. // class BtmBar extends StatelessWidget {
  9. // const BtmBar({Key key}) : super(key: key);
  10. // @override
  11. // Widget build(BuildContext context) {
  12. // // RecommendProvider provider = Provider.of<RecommendProvider>(context);
  13. // return Container(
  14. // child: Row(
  15. // mainAxisAlignment: MainAxisAlignment.spaceAround,
  16. // children: <Widget>[
  17. // getBtmTextWidget("首页", true),
  18. // getBtmTextWidget("同城", false),
  19. // AddIcon(),
  20. // getBtmTextWidget("消息", false),
  21. // getBtmTextWidget("我", false),
  22. // ],
  23. // ),
  24. // );
  25. // }
  26. // }
  27. class BtmBar extends StatefulWidget {
  28. BtmBar({Key key, this.selectIndex}) : super(key: key);
  29. final int selectIndex;
  30. _BtmBarState createState() => _BtmBarState();
  31. }
  32. class _BtmBarState extends State<BtmBar> {
  33. List<bool> selected = List<bool>();
  34. List<String> selectItems = List<String>();
  35. @override
  36. void initState() {
  37. super.initState();
  38. for (var i = 0; i < 4; i++) {
  39. selected.add(false);
  40. }
  41. selected[widget.selectIndex] = true;
  42. }
  43. @override
  44. void dispose() {
  45. // _controller.dispose();
  46. super.dispose();
  47. }
  48. tapItem(index) {
  49. // selected=List<bool>();
  50. // for (var i = 0; i < 4; i++) {
  51. // selected.add(false);
  52. // }
  53. // selected[index]=true;
  54. // setState(() {
  55. // selected=selected;
  56. // });
  57. switch (index) {
  58. case 0:
  59. Navigator.pushAndRemoveUntil(
  60. context,
  61. MaterialPageRoute(
  62. builder: (context) => RecommendPage(
  63. selIndex: index,
  64. )),
  65. ModalRoute.withName("/Home"));
  66. break;
  67. case 1:
  68. Navigator.pushAndRemoveUntil(
  69. context,
  70. MaterialPageRoute(
  71. builder: (context) => MultiProvider(
  72. providers: [
  73. ChangeNotifierProvider(
  74. builder: (context) => PostsGalleryProvider(),
  75. )
  76. ],
  77. child: SameCityMain(
  78. selIndex: index,
  79. ))),
  80. ModalRoute.withName("/sameCity"));
  81. break;
  82. case 2:
  83. Navigator.pushAndRemoveUntil(
  84. context,
  85. MaterialPageRoute(
  86. builder: (context) => SelfHomePage()),
  87. ModalRoute.withName("/selfHome"));
  88. break;
  89. default:
  90. break;
  91. }
  92. }
  93. @override
  94. Widget build(BuildContext context) {
  95. // RecommendProvider provider = Provider.of<RecommendProvider>(context);
  96. double rpx = MediaQuery.of(context).size.width / 750;
  97. return Container(
  98. child: Row(
  99. mainAxisAlignment: MainAxisAlignment.spaceAround,
  100. children: <Widget>[
  101. Expanded(
  102. flex: 1,
  103. child: getBtmTextWidget("首页", selected[0], () {
  104. tapItem(0);
  105. }, rpx)),
  106. Expanded(
  107. flex: 1,
  108. child: getBtmTextWidget("同城", selected[1], () {
  109. tapItem(1);
  110. }, rpx)),
  111. Expanded(flex: 1, child: AddIcon()),
  112. Expanded(
  113. flex: 1,
  114. child: getBtmTextWidget("消息", selected[2], () {
  115. tapItem(2);
  116. }, rpx)),
  117. Expanded(
  118. flex: 1,
  119. child: getBtmTextWidget("我", selected[3], () {
  120. tapItem(3);
  121. }, rpx)),
  122. ],
  123. ),
  124. );
  125. }
  126. }
  127. getBtmTextWidget(String content, bool ifSelected, tapFunc, double rpx) {
  128. return FlatButton(
  129. onPressed: () {
  130. tapFunc();
  131. },
  132. child: Text("$content",
  133. style: ifSelected
  134. ? TextStyle(
  135. fontSize: 30 * rpx,
  136. color: Colors.white,
  137. fontWeight: FontWeight.w900)
  138. : TextStyle(
  139. fontSize: 30 * rpx,
  140. color: Colors.grey[600],
  141. fontWeight: FontWeight.w900)));
  142. }
  143. class AddIcon extends StatelessWidget {
  144. const AddIcon({Key key}) : super(key: key);
  145. @override
  146. Widget build(BuildContext context) {
  147. double rpx = MediaQuery.of(context).size.width / 750;
  148. double iconHeight = 55 * rpx;
  149. double totalWidth = 90 * rpx;
  150. double eachSide = 5 * rpx;
  151. return Container(
  152. // decoration: BoxDecoration(),
  153. padding: EdgeInsets.symmetric(horizontal: 30 * rpx),
  154. height: iconHeight,
  155. width: 150 * rpx,
  156. child: Stack(
  157. children: <Widget>[
  158. Positioned(
  159. height: iconHeight,
  160. width: totalWidth - eachSide,
  161. child: Container(
  162. decoration: BoxDecoration(
  163. color: Colors.cyan, borderRadius: BorderRadius.circular(10)),
  164. ),
  165. ),
  166. Positioned(
  167. height: iconHeight,
  168. width: totalWidth - eachSide,
  169. right: 0,
  170. child: Container(
  171. decoration: BoxDecoration(
  172. color: Colors.redAccent,
  173. borderRadius: BorderRadius.circular(10)),
  174. ),
  175. ),
  176. Positioned(
  177. height: iconHeight,
  178. width: totalWidth - eachSide * 2,
  179. right: eachSide,
  180. child: Container(
  181. decoration: BoxDecoration(
  182. color: Colors.white, borderRadius: BorderRadius.circular(10)),
  183. child: Icon(Icons.add),
  184. ),
  185. ),
  186. ],
  187. ),
  188. );
  189. }
  190. }