BottomBar.dart 6.3 KB

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