I tried to Run flutter and i got this error: Another exception was thrown: Assertion failed: file:///home/moi/snap/flutter/common/flutter/packages/flutter/lib/src/material/bottom_navigation_bar.dart:189:9
Asked
Active
Viewed 144 times
1 Answers
0
You need to provide label
on your BottomNavigationBarItem
.
You can just empty string like
BottomNavigationBarItem(icon: Icon(Icons.abc), label: ""),
If you like to hide labels, do like this
bottomNavigationBar: BottomNavigationBar(
showSelectedLabels: false,// this
showUnselectedLabels: false,// this
items: [
BottomNavigationBarItem(icon: Icon(Icons.abc), label: ""),
BottomNavigationBarItem(icon: Icon(Icons.abc), label: ""),
],
),

Md. Yeasin Sheikh
- 54,221
- 7
- 29
- 56
-
Glad to help, you can check more about [BottomNavigationBar](https://api.flutter.dev/flutter/material/BottomNavigationBar-class.html) [someone-answers](https://stackoverflow.com/help/someone-answers#:~:text=To%20mark%20an%20answer%20as,the%20answer%2C%20at%20any%20time.) – Md. Yeasin Sheikh Jul 30 '22 at 16:21