BottomBar.dart 5.1 KB

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