如何从react-native-navigation v2中删除左侧sideMenu中的阴影。

发布于 2019-10-01 08:47:48
目前还不支持,但如果您想派生或编辑实现,这里有一行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];https://stackoverflow.com/questions/53610859
复制相似问题