A Nagraj Chauhan
A Nagraj Chauhan

Reputation: 1

error: The named parameter 'title' isn't defined. (undefined_named_parameter at [ecommerce_flutter] lib\screens\main.dart:127)

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

Answers (1)

Akhil George
Akhil George

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

Related Questions