when i press the bottomnavigationbar item why it doesnt work
Here the codes;
Color? color;
colorChange() {
if (_pageIndex == 0) {
color = AppColors.buttonColor;
}
if (_pageIndex == 1) {
color = AppColors.buttonColor;
}
if (_pageIndex == 2) {
color = AppColors.buttonColor;
}
return null;
}
BottomNavBar item section,
items: [
BottomNavigationBarItem(
icon: Padding(
padding: context.paddingTop / 8,
child: Container(
height: 40,
decoration: BoxDecoration(
color: colorChange(),
borderRadius: BorderRadius.circular(30)),
width: 40,
child: const Icon(
Icons.home_outlined,
),
),
),
label: ''),