-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.js
46 lines (40 loc) · 1.46 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
import { NavigationContainer } from '@react-navigation/native';
import { createStackNavigator } from '@react-navigation/stack';
import * as React from 'react';
import { Platform, StatusBar, StyleSheet, View } from 'react-native';
import {Container} from "native-base";
import * as SQLite from 'expo-sqlite';
import useCachedResources from './hooks/useCachedResources';
import ScreenNavigator from "./navigation/ScreenNavigator";
import LinkingConfiguration from './navigation/LinkingConfiguration';
const Stack = createStackNavigator();
const db = SQLite.openDatabase('db.db');
export default function App(props) {
const isLoadingComplete = useCachedResources();
db.transaction(tx => {
// tx.executeSql('DROP TABLE items');
tx.executeSql(
`create table if not exists items (
id integer primary key not null,
name text,
quantity int null default(0),
amount double default(0),
in_cart int default(0))`);
});
if (!isLoadingComplete) {
return null;
} else {
return (
<Container>
{Platform.OS === 'ios' && <StatusBar barStyle="dark-content" />}
<NavigationContainer linking={LinkingConfiguration}>
<Stack.Navigator screenOptions={{
headerShown: false
}}>
<Stack.Screen name="Root" component={ScreenNavigator} />
</Stack.Navigator>
</NavigationContainer>
</Container>
);
}
}