This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"expo": { | |
"name": "test1", | |
"description": "This project is really great.", | |
"slug": "test1", | |
"privacy": "public", | |
"sdkVersion": "24.0.0", | |
"platforms": ["ios", "android"], | |
"version": "1.0.0", | |
"orientation": "portrait", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from 'react'; | |
import { StyleSheet, Text, View , AsyncStorage} from 'react-native'; | |
import GuestNavigation from './app/navigations/guestNavigation'; | |
import LoggedNavigation from './app/navigations/loggedNavigation'; | |
const USER_ACCESS = 'user_access'; | |
export default class App extends React.Component { | |
constructor(props){ |
NewerOlder