Kureev / react-native-side-menu

Side menu component for React Native
MIT License
2.21k stars 436 forks source link

Add overlayStyle prop #397

Closed Alb93 closed 4 years ago

Alb93 commented 4 years ago

With the overlayStyle prop, you can style the overlay view.

For example, the following way shows how to add a shadow-like overlay:

const styles = StyleSheet.create({ overlayStyle: { backgroundColor: 'black', opacity: 0.7 } });

...

<SideMenu overlayStyle={styles.overlayStyle} menu={} > ...