root-two / react-native-drawer

React Native Drawer
MIT License
2.54k stars 392 forks source link

Multiples drawer and Map, became intouchable #369

Open albttx opened 5 years ago

albttx commented 5 years ago

Hello,

I need to have 2 drawers, and a map in the background,

The problem is that i can't drag the map once the drawer is on... i try to play with zIndex, but i'm not doing it well :/

<View style={styles.container}>
    <Map style={styles.map}></Map>
    <View style={styles.drawers}>
        <BottomDrawer></BottomDrawer>
        <RightDrawer></RightDrawer>
    </View>
</View>

On the map example (see here), the map is inside the drawer, but is the another way ?

Thanks,