Grey Background on clicking Drawer Items in React Native app
Problem: Grey Background when clicking/Long Press on items. Requirement: How to change grey background to orange color when I press items? <Drawer.Navigator drawerContent={(props)=><CustomDrawer {...props}/>} screenOptions={ { drawerStyle:{ width:300, borderBottomEndRadius:15, }, drawerLabelStyle:{ fontSize:18, marginLeft:-10, }, drawerItemStyle:{ marginLeft:0, marginRight:0, paddingLeft:10 }, drawerActiveBackgroundColor:'orange',…