我正在使用弯曲的底部导航栏,尽管我希望用户能够点击它,但我希望每次都为外观选择一个默认选项(例如“主页”按钮)。但是当我选择默认选项时用户还没有。我该怎么办?
class MainClass extends StatelessWidget{
@override
Widget build(BuildContext context) {
return Scaffold(
body: MyRV(),
bottomNavigationBar:CurvedNavigationBar(
height: 50,
index: 1,
color: Colors.orange,
buttonBackgroundColor: Colors.white,
backgroundColor: Colors.blueAccent,
items: <Widget>[
Icon(Icons.arrow_back, size: 20,color: Colors.blueAccent,),
Icon(Icons.home, size: 20,color: Colors.blueAccent,),
Icon(Icons.contact_mail, size: 20,color: Colors.blueAccent,),
],
animationDuration:Duration(
milliseconds: 1000
),
animationCurve: Curves.linearToEaseOut,
onTap: (index) {
if (index==1)
Navigator.of(context).push(MaterialPageRoute(builder: (BuildContext context){return
b_afandou();})
);
},
),
);
}
}
答案 0 :(得分:0)
您已经实现了。这里的index: 1
表示您已将默认按钮设置为与索引1对应的按钮。
检查此内容以获取更多详细信息。 Corrected way to implement curved navigation bar
答案 1 :(得分:0)
我注意到问题仍在被查看,因此我想告诉您,这只是我所发现的错误。因为我什么也没做,它开始正常工作。