bottom_bar.dart 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232
  1. import 'package:douyin_demo/pages/CameraMain.dart';
  2. import 'package:douyin_demo/pages/SameCityPage.dart';
  3. import 'package:douyin_demo/pages/home_page.dart';
  4. import 'package:douyin_demo/providers/CameraProvider.dart';
  5. import 'package:douyin_demo/providers/PostsGalleryProvider.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 = <bool>[];
  34. List<String> selectItems = <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) => MyHomePage(
  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. create: (BuildContext context) {
  75. return 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(builder: (context) => SelfHomePage()),
  87. ModalRoute.withName("/selfHome"));
  88. break;
  89. case 3:
  90. Navigator.of(context).push(MaterialPageRoute(
  91. builder: (BuildContext context) {
  92. return MultiProvider(
  93. providers: [
  94. ChangeNotifierProvider(create: (BuildContext context) {
  95. return CameraProvider();
  96. })
  97. ],
  98. child: CameraPage(
  99. // rpx: MediaQuery.of(context).size.width / 750,
  100. ));
  101. },
  102. fullscreenDialog: true));
  103. break;
  104. default:
  105. break;
  106. }
  107. }
  108. @override
  109. Widget build(BuildContext context) {
  110. // RecommendProvider provider = Provider.of<RecommendProvider>(context);
  111. double rpx = MediaQuery.of(context).size.width / 750;
  112. return Container(
  113. child: Row(
  114. mainAxisAlignment: MainAxisAlignment.spaceAround,
  115. children: <Widget>[
  116. Expanded(
  117. flex: 1,
  118. child: getBtmTextWidget("首页", selected[0], () {
  119. tapItem(0);
  120. }, rpx)),
  121. Expanded(
  122. flex: 1,
  123. child: getBtmTextWidget("同城", selected[1], () {
  124. tapItem(1);
  125. }, rpx)),
  126. Expanded(
  127. flex: 1,
  128. child: AddIcon(
  129. tapItem: () {
  130. tapItem(3);
  131. },
  132. )),
  133. Expanded(
  134. flex: 1,
  135. child: getBtmTextWidget("消息", selected[2], () {
  136. tapItem(2);
  137. }, rpx)),
  138. Expanded(
  139. flex: 1,
  140. child: getBtmTextWidget("我", selected[3], () {
  141. tapItem(3);
  142. }, rpx)),
  143. ],
  144. ),
  145. );
  146. }
  147. }
  148. getBtmTextWidget(String content, bool ifSelected, tapFunc, double rpx) {
  149. return FlatButton(
  150. onPressed: () {
  151. tapFunc();
  152. },
  153. child: Text("$content",
  154. style: ifSelected
  155. ? TextStyle(
  156. fontSize: 30 * rpx,
  157. color: Colors.white,
  158. fontWeight: FontWeight.w900)
  159. : TextStyle(
  160. fontSize: 30 * rpx,
  161. color: Colors.grey[600],
  162. fontWeight: FontWeight.w900)));
  163. }
  164. class AddIcon extends StatelessWidget {
  165. const AddIcon({Key key, @required this.tapItem}) : super(key: key);
  166. final VoidCallback tapItem;
  167. @override
  168. Widget build(BuildContext context) {
  169. double rpx = MediaQuery.of(context).size.width / 750;
  170. double iconHeight = 55 * rpx;
  171. double totalWidth = 90 * rpx;
  172. double eachSide = 5 * rpx;
  173. return Container(
  174. // decoration: BoxDecoration(),
  175. padding: EdgeInsets.symmetric(horizontal: 30 * rpx),
  176. height: iconHeight,
  177. width: 150 * rpx,
  178. child: FlatButton(
  179. padding: EdgeInsets.all(0),
  180. onPressed: () {
  181. tapItem();
  182. },
  183. child: Stack(
  184. children: <Widget>[
  185. Positioned(
  186. height: iconHeight,
  187. width: totalWidth - eachSide,
  188. child: Container(
  189. decoration: BoxDecoration(
  190. color: Colors.cyan,
  191. borderRadius: BorderRadius.circular(10)),
  192. ),
  193. ),
  194. Positioned(
  195. height: iconHeight,
  196. width: totalWidth - eachSide,
  197. right: 0,
  198. child: Container(
  199. decoration: BoxDecoration(
  200. color: Colors.redAccent,
  201. borderRadius: BorderRadius.circular(10)),
  202. ),
  203. ),
  204. Positioned(
  205. height: iconHeight,
  206. width: totalWidth - eachSide * 2,
  207. right: eachSide,
  208. child: Container(
  209. decoration: BoxDecoration(
  210. color: Colors.white,
  211. borderRadius: BorderRadius.circular(10)),
  212. child: Icon(Icons.add),
  213. ),
  214. ),
  215. ],
  216. )),
  217. );
  218. }
  219. }