warning drawer router flux
See original GitHub issuehi, warning:
Setting DrawerLayoutAndroid drawerPosition using DrawerLayoutAndroid.positions is deprecated. Instead pass the string value “left” or “right”
I used the code below but show warning top
<Drawer
key="drawer"
contentComponent={DrawerContent}
drawerPosition="right">
<Scene ....
<Scene ....
</Drawer>
please help to me
Issue Analytics
- State:
- Created 4 years ago
- Reactions:1
- Comments:9
Top Results From Across the Web
how to hide drawer in react router flux? - Stack Overflow
hey there i am working with react native project and i am using react router flux for navigation and i use Drawer so...
Read more >aksonov/react-native-router-flux - Gitter
Hey guys - just joined - I'm working on routing in my RN app using router-flux and I can't seem to get my...
Read more >react-native-router-flux | Yarn - Package Manager
Invariant Violation: View config not found for name RNSVGRect #3099; Drawer's default scene Reloads Twice #3096; [mobx] Warning: there are multiple mobx ...
Read more >react-native-router-flux - npm package - Snyk
Learn more about react-native-router-flux: package health score, ... to Snyk to stay up to date on security alerts and receive automatic fix pull...
Read more >react-native-router-flux - npm
Drawer support (react; 'Lightbox' support (used by popups like Error alert within Example project). Breaking changes (comparing to v3):. No ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
same thing happend just after RN upgrade. i’m also waiting for solution.
in case you can disable warning just add
YellowBox.ignoreWarnings([ 'DrawerLayoutAndroid drawerPosition' , ]);
this code at your index.js file.
thank you