How can we remove the shadow from the left sideMenu from react-native-navigation v2.
Asked
Active
Viewed 555 times
4

Catarina Ferreira
- 1,824
- 5
- 17
- 26

raiBalKumar
- 51
- 3
-
Did you ever find a solution? – Brenwell Feb 22 '19 at 08:23
1 Answers
1
There is not support yet, but if you want to fork or edit the implementation here is the line https://github.com/wix/react-native-navigation/blob/a591fe4476ca152a336022e2570431b677f60225/lib/ios/RNNSideMenu/MMDrawerController/MMDrawerController.m#L220
[self setAnimationVelocityLeft:MMDrawerDefaultAnimationVelocity];
[self setAnimationVelocityRight:MMDrawerDefaultAnimationVelocity];
- [self setShowsShadow:YES];
+ [self setShowsShadow:NO];
[self setShouldStretchLeftDrawer:YES];
[self setShouldStretchRightDrawer:YES];

jamesjara
- 554
- 5
- 14