Advertisement
Guest User

Untitled

a guest
May 27th, 2017
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. export const UnauthNavigator = StackNavigator({
  2. Splash: {
  3. screen: SplashScreen,
  4. navigationOptions: {
  5. header: null,
  6. },
  7. },
  8. SignIn: {
  9. screen: SignInScreen,
  10. navigationOptions: (props) => ({
  11. title: 'Đăng nhập',
  12. }),
  13. },
  14. }, {
  15. cardStyle: {
  16. backgroundColor: '#fff',
  17. },
  18. navigationOptions,
  19. mode: 'modal',
  20. });
  21. navigateOnce(UnauthNavigator);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement