1
|
import { StatusBar } from 'expo-status-bar'
|
2
|
import { StyleSheet, Text, View } from 'react-native'
|
3
|
import { NativeBaseProvider, Box } from "native-base"
|
4
|
import LoginPage from './src/pages/LoginPage'
|
5
|
import ScrollViewTest from "./src/pages/ScrollViewTest"
|
6
|
|
7
|
export default function App() {
|
8
|
return (
|
9
|
<NativeBaseProvider>
|
10
|
<ScrollViewTest />
|
11
|
</NativeBaseProvider>
|
12
|
)
|
13
|
}
|
14
|
|
15
|
const styles = StyleSheet.create({
|
16
|
container: {
|
17
|
flex: 1,
|
18
|
backgroundColor: '#fff',
|
19
|
alignItems: 'center',
|
20
|
justifyContent: 'center',
|
21
|
},
|
22
|
});
|