BottomNavigationBar(
elevation: 10,
type: BottomNavigationBarType.fixed,
backgroundColor: Color(0xFFFBFBFB),
showSelectedLabels: false,
showUnselectedLabels: false,
items: <BottomNavigationBarItem>[
BottomNavigationBarItem(
icon: Column(
children: [
Text(
AppLocalizations.of(context)!.redeem,
style: Styles.grey13Medium,
)
],
),
activeIcon: Column(
children: [
Text(
AppLocalizations.of(context)!.redeem,
style: Styles.blue13Medium,
)
],
),
label: 'Redeem',
),
],
currentIndex: _currentTab,
onTap: _onItemTapped,
)
we try to change in overlay but I didn't find overlay property in BottomNavigationBar and BottomNavigationBarItem