0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

【Flutter】BottomNavigationBarで4つ以上のItemを使用した場合の注意点

Last updated at Posted at 2024-04-02

【Flutter】BottomNavigationBarで4つ以上のItemを使用した場合の注意点

これただのメモ

image.png

final bar = BottomNavigationBar(
      items: items, // アイテムたち
      backgroundColor: Colors.green, // バーの色
      selectedItemColor: Colors.black, // 選ばれたアイテムの色
      unselectedItemColor: Colors.grey, // 選ばれていないアイテムの色
      currentIndex: index, // インデックス
      onTap: (index) {
        // タップされたとき インデックスを変更する
        ref.read(indexProvider.notifier).state = index;
      },
    );

上記のように記述してもバーの色が反映されないから困っていた。

答えは既出されていました。↓

上記を参考に修正したらバーの色が反映されてニッコリ。

image.png

まぁ答えは以下の文をBottomNavigationBarに追加するだけでした。

type: BottomNavigationBarType.fixed,

BottomNavigationBarはItem数が3つと4つでTypeのデフォルト値が変わるっぽい。

そしてバーの色のセンスが終わっている。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?