首页 > 解决方案 > Differents drawer navigator for each user type in React Native

问题描述

I'm new using react native, and I came across a problem / question. I am implementing an application with two different user types: Teacher and Student. I would like to offer each type of user a drawer navigator appropriate to their functions.

Currently I have a stack navigator with login screens and after login I would like to know if it is possible to instantiate a different drawer for each type of user. The structure I am wanting is as follows:

Navigation tree.

Sorry for any mistake, I'm Brazilian and I'm using translator.

标签: reactjsreact-native-androidreact-navigationwix-react-native-navigation

解决方案


Drawer navigator supports a custom component for the content: https://reactnavigation.org/docs/en/drawer-navigator.html#providing-a-custom-contentcomponent

You can provide a custom React component where you conditionally render different content based on the user type.


推荐阅读