-
Notifications
You must be signed in to change notification settings - Fork 0
/
App.tsx
76 lines (67 loc) · 2.04 KB
/
App.tsx
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
/**
* Sample React Native App
* https://github.com/facebook/react-native
*
* @format
*/
import React, { useEffect, useState } from 'react';
import { NavigationContainer } from '@react-navigation/native';
import { createNativeStackNavigator } from '@react-navigation/native-stack';
import { Button, StatusBar, Text, View, useColorScheme } from 'react-native';
import type {StatusBarStyle} from 'react-native';
import { createBottomTabNavigator } from '@react-navigation/bottom-tabs';
import { DefaultTheme, DarkTheme } from '@react-navigation/native';
import Ionicons from '@expo/vector-icons/Ionicons';
import Main from '@ui';
import LoginMain from '@ui/login';
import { LibruhThemeDark, LibruhThemeLight } from '@constants/themes';
// @ts-ignore
function HomeScreen({ navigation }) {
return (
<View style={{ flex: 1, alignItems: 'center', justifyContent: 'center' }}>
<Text>Home Screen</Text>
<Button
title="Go to Details"
onPress={() => navigation.navigate('Details')}
/>
</View>
);
}
// @ts-ignore
function DetailsScreen({ navigation }) {
return (
<View style={{ flex: 1, alignItems: 'center', justifyContent: 'center' }}>
<Text>Details Screen</Text>
<Button title="Go to Home" onPress={() => navigation.navigate('Home')} />
</View>
);
}
const Tab = createBottomTabNavigator();
const LoginStack = createNativeStackNavigator();
function App() {
/*storage.load({
key: 'loginCredentials',
}).then(data => {
// credentials were found
return (
<p style={{backgroundColor: 'red'}}>a</p>
)
}).catch(err => {
// no credentials were found
return (
<p style={{backgroundColor: 'blue'}}>b</p>
)
})*/
const scheme = useColorScheme();
//let scheme = 'light'
return (
<>
<NavigationContainer theme={scheme === 'dark' ? LibruhThemeDark : LibruhThemeLight }>
<StatusBar barStyle={scheme === 'dark' ? "light-content" : "dark-content"} animated={true}/>
<LoginMain/>
{/* <Main/> */}
</NavigationContainer>
</>
)
}
export default App;