final int selectedIndex = 0;
var heightOfDevice = MediaQuery.of(context).size.height;
return SafeArea(
child: Scaffold(
bottomNavigationBar: const GNav(
backgroundColor: Color(0xFF242A38),
color: Colors.white,
activeColor: Color(0xFFF54B64),
gap: 8,
onTabChange: (index) {
// Here the index is raising error as invalid constant value
},
tabs: [
GButton(
icon: Icons.home,
text: 'Home',
), // Etc.
]
)
)
)
I don't know why I am getting that error, I have initialized everything correctly, I want to navigate to another page but here I am getting stopped, as the index is raising the error as invalid constant.