-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.js
56 lines (42 loc) · 1.04 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
import React from 'react';
import { Text, View, ScrollView, TextInput,StyleSheet, Button } from 'react-native';
import Home from './components/Home'
import './components/router'
import TabNavigator from './components/router';
// import { Provider as PaperProvider } from 'react-native-paper';
import { NavigationContainer } from '@react-navigation/native';
import Prevision from './components/Prevision';
export default function Login (props) {
return (
// <NavigationContainer>
// <TabNavigator/>
// </NavigationContainer>
<View style={styles.container}>
<Home/>
{/* <Prevision/> */}
</View>
);
}
const styles = StyleSheet.create({
container: {
flex: 1,
justifyContent: 'center',
alignItems: 'center',
},
title: {
padding: 8,
fontSize: 28,
fontWeight: 'bold',
},
label: {
padding: 6,
fontSize: 20,
},
boxInput:{
borderRadius: 4,
borderWidth: 0.5,
borderColor: '#000000',
minWidth:100,
minHeight:20,
},
});