Reputation: 1
title: Padding(
padding: const EdgeInsets.all(8.0),
child: Text(
AppLocalizations.of(context).main_screen_bottom_navigation_home,
style: TextStyle(fontSize: 12),
),
)),
BottomNavigationBarItem(
Upvotes: 0
Views: 541
Reputation: 427
title is now deprecated, use label property instead, and just give it a String , ex: 'Home', 'Cart',..
Read : https://docs.flutter.dev/release/breaking-changes/bottom-navigation-title-to-label
More About BottomNavigationBar and BottomNavigationBarItem
Upvotes: 2