Hydra Babakri
Hydra Babakri

Reputation: 21

I have a problem with BottomNavigationBar

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)

Image

Image

Image

I tried inserting the values ​​into the BottomNavigationBar

Upvotes: 2

Views: 4894

Answers (1)

szakes1
szakes1

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

Related Questions