bottom_bar.dart 6.7 KB

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