您好,我尝试导航到其他图标,但它不起作用。 _selectedpages 等于 0。我已经使用了文档并遵循了所有内容。
'''
bottomNavigationBar: BottomNavigationBar(
currentIndex: _selectedPage,
items: [
BottomNavigationBarItem(
icon: Icon(Icons.leaderboard),
label: 'Leaderboard',
),
BottomNavigationBarItem(
icon: Icon(Icons.home),
label: 'Home',
),
BottomNavigationBarItem(
icon: Icon(Icons.account_circle),
label: 'Account',
),
],
onTap: _onChange,
),
''' '''
void _onChange(int index) {
setState(() {
_selectedPage = index;
});
}