I want to show label on left and drawerIcon on right but unable figure out how. Here is code
<Drawer.Navigator drawerContentOptions={{ contentContainerStyle: { backgroundColor: Colors.primary, height: "100%" }, labelStyle: { color: "white" } }} > <Drawer.Screen name="HomeScreen" component={Home} options={{ drawerLabel: "Home" }} /> <Drawer.Screen name="Channels" component={Channels} options={{ drawerIcon: () => ( <AntDesign name="pluscircle" size={20} color="white" /> ) }} /> </Drawer.Navigator> I would like to show "Channels" on left side and plus icon on right side