BottomBar.dart 6.4 KB

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