未定义命名参数 'title'。颤振问题
The named parameter 'title' isn't defined. Issue in flutter
问题
The named parameter 'title' isn't defined. Issue in flutter
代码:
items: [
BottomNavigationBarItem(
icon: Icon(Icons.home),
title: Text('Home'),
backgroundColor: Colors.white,
),
BottomNavigationBarItem(
icon: Icon(Icons.chat),
title: Text(
'Chat',
),
backgroundColor: Colors.white,
),
BottomNavigationBarItem(
icon: Icon(Icons.alarm_add),
title: Text('Reminder'),
backgroundColor: Colors.white,
),
// BottomNavigationBarItem(
// icon: Icon(Icons.supervised_user_circle),
// title: Text(
// 'Profile',
// ),
// backgroundColor: Colors.white,
// ),
],
在 BottomNavigationBarItem
上使用 label
而不是 title
。
会像
BottomNavigationBarItem(
icon: Icon(Icons.home),
label: 'Home',
backgroundColor: Colors.white,
),
问题
The named parameter 'title' isn't defined. Issue in flutter
代码:
items: [
BottomNavigationBarItem(
icon: Icon(Icons.home),
title: Text('Home'),
backgroundColor: Colors.white,
),
BottomNavigationBarItem(
icon: Icon(Icons.chat),
title: Text(
'Chat',
),
backgroundColor: Colors.white,
),
BottomNavigationBarItem(
icon: Icon(Icons.alarm_add),
title: Text('Reminder'),
backgroundColor: Colors.white,
),
// BottomNavigationBarItem(
// icon: Icon(Icons.supervised_user_circle),
// title: Text(
// 'Profile',
// ),
// backgroundColor: Colors.white,
// ),
],
在 BottomNavigationBarItem
上使用 label
而不是 title
。
会像
BottomNavigationBarItem(
icon: Icon(Icons.home),
label: 'Home',
backgroundColor: Colors.white,
),