-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathApp.js
87 lines (82 loc) · 2.31 KB
/
App.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
import React, {PureComponent} from 'react';
import {Tour} from './src/guided-tour/Tour';
import {Icon} from 'native-base';
import {Home} from './src/core/components/Home';
import {NavigationContainer} from '@react-navigation/native';
import {createStackNavigator} from '@react-navigation/stack';
import {ImageView} from './src/core/components/ImageView';
import AsyncStorage from '@react-native-community/async-storage';
import {mainThemeColor} from './src/configuration';
import {StyleSheet, TouchableOpacity} from 'react-native';
const Stack = createStackNavigator();
class App extends PureComponent {
constructor(props) {
super(props);
this.state = {
showRealApp: false,
};
}
async componentDidMount() {
let oldUser = await AsyncStorage.getItem('@OldUser');
this.setState({
showRealApp: oldUser,
});
}
hideTour = show => () => {
this.setState({showRealApp: show});
AsyncStorage.setItem('@OldUser', 'true');
};
render() {
if (this.state.showRealApp) {
return (
<NavigationContainer>
<Stack.Navigator
initialRouteName="Home"
screenOptions={{
headerStyle: {
elevation: 0,
backgroundColor: mainThemeColor(1),
},
headerTintColor: '#f5f7f7',
headerRight: () => (
<TouchableOpacity onPress={this.hideTour(null)}>
<Icon
style={styles.menuicon}
type="FontAwesome5"
name="question-circle"
/>
</TouchableOpacity>
),
}}>
<Stack.Screen
name="Home"
component={Home}
options={{title: 'Inicio'}}
/>
<Stack.Screen
name="Imagen"
component={ImageView}
options={{
title: 'Imagen',
}}
/>
</Stack.Navigator>
</NavigationContainer>
);
} else {
if (this.state.showRealApp === false) {
return null;
} else {
return <Tour onDone={this.hideTour(true)} />;
}
}
}
}
const styles = StyleSheet.create({
menuicon: {
color: '#f5f7f7',
fontSize: 24,
marginRight: 20,
},
});
export default App;