BottomBar.dart 4.3 KB

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