各アイコンを選択した際、BottomNavigationBarの上部に、太線を表示したいです。
Youtube動画内のエミュレーターでは、BottomAppBar
にてcontainer
を使用し、太線を作っています。
同様の表示を、BottomNavigationBar
でも出来るのでしょうか?
また、太線アリで動的な動作ができるのなら、BottomNavigationBar
でなくても可です。
もし方法がありましたら、教えて頂けると嬉しいです。
Flutter
1bottomNavigationBar: BottomNavigationBar( 2 showUnselectedLabels: false, 3 unselectedItemColor: Colors.grey, 4 type: BottomNavigationBarType.fixed, 5 currentIndex: pageIndex, 6 onTap: (newIndex) { 7 setState(() { 8 pageIndex = newIndex; 9 }); 10 }, 11 items: [ 12 BottomNavigationBarItem( 13 icon: Icon(Icons.location_on), 14 title: Text('Location'), 15 16 ), 17 BottomNavigationBarItem( 18 icon: Icon(Icons.favorite_border), 19 title: Text('Favorite'), 20 ), 21 BottomNavigationBarItem( 22 icon: Icon(Icons.open_in_browser), 23 title: Text('Explorer'), 24 ), 25 BottomNavigationBarItem( 26 icon: Icon(Icons.calendar_today), 27 title: Text('Plan'), 28 ), 29 BottomNavigationBarItem( 30 icon: Icon(Icons.person_outline), 31 title: Text('Profile'), 32 ), 33 ], 34 )
追記
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/06/29 01:00 編集
2020/06/29 01:07
2020/06/29 01:20 編集
2020/06/29 01:40
2020/06/29 02:14
2020/06/29 02:32
2020/06/29 03:40
2020/06/29 04:12
2020/06/29 04:39
2020/06/29 07:29 編集
2020/06/30 01:53
2020/06/30 09:27