I am using react native navigation v2 for by application. I need to change the background color of the selected bottom tab.
options: {
bottomTab: {
icon: val.icon,
text: val.text,
textColor: getColorTheme("SECONDARY", "LIGHT"),
selectedTextColor: getColorTheme("ORANGE", "LIGHT"),
selectedIconColor: getColorTheme("ORANGE", "LIGHT"),
fontFamily: FONTFAMILY.SEMIBOLD,
fontSize: FONTSIZE.FONT_12,
selectedFontSize: FONTSIZE.FONT_12,
selectedBackgroundColor:'red'
}
}