You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Sep 13, 2020. It is now read-only.
@@ -81,5 +81,18 @@ class Application extends React.Component {
81
81
82
82
On iPhone, the scroll-to-top gesture has no effect if there is more than one scroll view on-screen that has scrollsToTop set to true. Since it defaults to `true` in ReactNative, you have to set `scrollsToTop={false}` on your ScrollView inside `Menu` component in order to get it working as desired.
83
83
84
+
#### The swipe animation is extremely slow
85
+
86
+
Try disabling remote JS debugging (from developer menu on phone/VD)
87
+
88
+
#### My SideMenu contents are visible even when the side menu is hidden
89
+
90
+
Ensure that your main view has a background color applied
91
+
92
+
```
93
+
<Sidemenu menu={menu}>
94
+
<App style={{backgroundColor='white'}} />
95
+
</SideMenu>
96
+
```
84
97
### Questions?
85
98
Feel free to contact me in [twitter](https://twitter.com/kureevalexey) or [create an issue](https://github.com/Kureev/react-native-side-menu/issues/new)
0 commit comments