skip to Main Content

I´ve a problem with the BottomNavigationBar in Flutter . BottomNavigationBarItem: title is not working and there is error

enter image description herethis is the error occur. bottomNavigationBar: BottomNavigationBar( items: const <BottomNavigationBarItem>[ BottomNavigationBarItem( icon: Icon( Icons.home, ), title: Text( 'Home', ), ), BottomNavigationBarItem( icon: Icon( Icons.message, ), title: Text( 'Messages', ), ), BottomNavigationBarItem( icon: Icon( Icons.person, ), title: Text(…

VIEW QUESTION
Back To Top
Search