123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154 |
- import 'package:douyin_demo/pages/sameCity/SameCityPage.dart';
- import 'package:flutter/material.dart';
- // class BtmBar extends StatelessWidget {
- // const BtmBar({Key key}) : super(key: key);
- // @override
- // Widget build(BuildContext context) {
- // // RecommendProvider provider = Provider.of<RecommendProvider>(context);
- // return Container(
- // child: Row(
- // mainAxisAlignment: MainAxisAlignment.spaceAround,
- // children: <Widget>[
- // getBtmTextWidget("首页", true),
- // getBtmTextWidget("同城", false),
- // AddIcon(),
- // getBtmTextWidget("消息", false),
- // getBtmTextWidget("我", false),
- // ],
- // ),
- // );
- // }
- // }
- class BtmBar extends StatefulWidget {
- BtmBar({Key key, this.selectIndex}) : super(key: key);
- final int selectIndex;
- _BtmBarState createState() => _BtmBarState();
- }
- class _BtmBarState extends State<BtmBar> {
- List<bool> selected = List<bool>();
- List<String> selectItems = List<String>();
- @override
- void initState() {
- super.initState();
- for (var i = 0; i < 4; i++) {
- selected.add(false);
- }
- selected[widget.selectIndex] = true;
- }
- tapItem(index) {
- // selected=List<bool>();
- // for (var i = 0; i < 4; i++) {
- // selected.add(false);
- // }
- // selected[index]=true;
- // setState(() {
-
- // selected=selected;
- // });
- Navigator.push(context, MaterialPageRoute(builder: (context)=>SameCityMain(selIndex: index,)));
- }
- @override
- Widget build(BuildContext context) {
- // RecommendProvider provider = Provider.of<RecommendProvider>(context);
- double rpx=MediaQuery.of(context).size.width/750;
- return Container(
- child: Row(
- mainAxisAlignment: MainAxisAlignment.spaceAround,
- children: <Widget>[
- Expanded(
- flex: 1,
- child: getBtmTextWidget("首页", selected[0],(){tapItem(0);},rpx)
- ),
- Expanded(
- flex: 1,
- child: getBtmTextWidget("同城", selected[1],(){tapItem(1);},rpx)
- ),
- Expanded(
- flex: 1,
- child: AddIcon()
- ),
- Expanded(
- flex: 1,
- child: getBtmTextWidget("消息", selected[2],(){tapItem(2);},rpx)
- ),
- Expanded(
- flex: 1,
- child: getBtmTextWidget("我", selected[3],(){tapItem(3);},rpx)
- ),
- ],
- ),
- );
- }
- }
- getBtmTextWidget(String content, bool ifSelected,tapFunc,double rpx) {
- return FlatButton(
- onPressed: () {tapFunc();},
- child: Text("$content",
- style: ifSelected
- ? TextStyle(
- fontSize: 30*rpx,
- color: Colors.white,
- fontWeight: FontWeight.w900)
- : TextStyle(
- fontSize: 30*rpx,
- color: Colors.grey[600],
- fontWeight: FontWeight.w900)));
- }
- class AddIcon extends StatelessWidget {
- const AddIcon({Key key}) : super(key: key);
- @override
- Widget build(BuildContext context) {
- double rpx=MediaQuery.of(context).size.width/750;
- double iconHeight = 55*rpx;
- double totalWidth = 90*rpx;
- double eachSide = 5*rpx;
- return Container(
- // decoration: BoxDecoration(),
- padding: EdgeInsets.symmetric(horizontal: 30*rpx),
- height: iconHeight,
- width: 150*rpx,
- child: Stack(
- children: <Widget>[
- Positioned(
- height: iconHeight,
- width: totalWidth - eachSide,
- child: Container(
- decoration: BoxDecoration(
- color: Colors.cyan, borderRadius: BorderRadius.circular(10)),
- ),
- ),
- Positioned(
- height: iconHeight,
- width: totalWidth - eachSide,
- right: 0,
- child: Container(
- decoration: BoxDecoration(
- color: Colors.redAccent,
- borderRadius: BorderRadius.circular(10)),
- ),
- ),
- Positioned(
- height: iconHeight,
- width: totalWidth - eachSide * 2,
- right: eachSide,
- child: Container(
- decoration: BoxDecoration(
- color: Colors.white, borderRadius: BorderRadius.circular(10)),
- child: Icon(Icons.add),
- ),
- ),
- ],
- ),
- );
- }
- }
|