gpt4 book ai didi

flutter - 如何更改底部导航栏的颜色?

转载 作者:IT老高 更新时间:2023-10-28 12:40:26 36 4
gpt4 key购买 nike

如何更改 bottomNavigationBar 的颜色?

下面是我的代码片段。我无法更改小部件的颜色。

@override
Widget build(BuildContext context) {
return BottomNavigationBar(

currentIndex: currentIndex,
onTap: (selectedPosition) => onNavItemTapped(selectedPosition),
items: <BottomNavigationBarItem>[
widget.buildBottomNavigationBarItem(
context, 'Discover', Icons.home, false, 0),
widget.buildBottomNavigationBarItem(
context, 'Chats', Icons.chat, true, 1),
],
);
}

最佳答案

请这样使用:

bottomNavigationBar: new Theme(
data: Theme.of(context).copyWith(
// sets the background color of the `BottomNavigationBar`
canvasColor: Colors.red,
),
child: BottomNavigationBar(
type: BottomNavigationBarType.fixed,
..........

关于flutter - 如何更改底部导航栏的颜色?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50854069/

36 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com