Reputation: 21
When I connect the application to the phone, I run it, and this appears
It also appears in the DEBUG CONSOLE list, which is in blue and does not stop counting
Exception has occurred. _AssertionError ('package:flutter/src/material/bottom_navigation_bar.dart': Failed assertion: line 188 pos 11: 'items.every((BottomNavigationBarItem item) => item.label != null)': Every item must have a non-null label)
I tried inserting the values into the BottomNavigationBar
Upvotes: 2
Views: 4894
Reputation: 904
You need to add a label to your BottomNavigationBarItem. It must not be null. Here's the example:
BottomNavigationBarItem(
label: 'Some String'
);
Upvotes: 7