したがって、現在、下部のナビゲーションには次のものがあります
bottomNavigationBar: BottomAppBar(
shape: CircularNotchedRectangle(),
child: Container(
decoration:
new BoxDecoration(color: new Color(0xFFFF0000)),
height: 75,
child: Row(
mainAxisSize: MainAxisSize.max,
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: <Widget>[
IconButton(
iconSize: 30.0,
padding: EdgeInsets.only(left: 28.0),
icon: Icon(Icons.home),
onPressed: () {
setState(() {
onTabTapped(0);
});
},
),
IconButton(
iconSize: 30.0,
//padding: EdgeInsets.only(left: 28.0),
icon: Icon(Icons.view_headline),
onPressed: () {
setState(() {
onTabTapped(2);
});
},
),
/* IconButton(
iconSize: 30.0,
padding: EdgeInsets.only(right: 28.0),
icon: Icon(Icons.search),
onPressed: () {
setState(() {
onTabTapped(1);
});
},
),
IconButton(
iconSize: 30.0,
padding: EdgeInsets.only(left: 28.0),
icon: Icon(Icons.notifications),
onPressed: () {
setState(() {
onTabTapped(2);
});
},
),*/
IconButton(
iconSize: 30.0,
padding: EdgeInsets.only(right: 28.0),
icon: Icon(Icons.info_outline),
onPressed: () {
setState(() {
onTabTapped(1);
});
},
)
],
),
),
),
ただし、アクティブなページまたは選択範囲が別の色にならないことに気付きました。たとえば、最初のページはホームページなので、アイコンは黒ではなく白にする必要があります。
作るために何を追加する必要があるのだろうか?基本的に、選択した色は白でなければなりません。
私が見つけた解決策は、コードを次のように変更することでした。
bottomNavigationBar: new Theme(
data: Theme.of(context).copyWith(
// sets the background color of the `BottomNavigationBar`
canvasColor: Colors.red,
// sets the active color of the `BottomNavigationBar` if `Brightness` is light
primaryColor: Colors.black,
textTheme: Theme
.of(context)
.textTheme
.copyWith(caption: new TextStyle(color: Colors.black))), // sets the inactive color of the `BottomNavigationBar`
child: BottomNavigationBar(
items: const <BottomNavigationBarItem>[
BottomNavigationBarItem(
icon: Icon(Icons.home),
title: Text('Home'),
),
BottomNavigationBarItem(
icon: Icon(Icons.view_headline),
title: Text('News'),
),
BottomNavigationBarItem(
icon: Icon(Icons.more),
title: Text('More'),
),
],
currentIndex: _selectedIndex,
selectedItemColor: Colors.white,
onTap: onTabTapped,
),
),