-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.tsx
More file actions
34 lines (33 loc) · 1.39 KB
/
App.tsx
File metadata and controls
34 lines (33 loc) · 1.39 KB
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
import { SafeAreaView, } from 'react-native'
import { HelloWorldScreen } from './src/presentation/screens/HelloWorldScreen'
import { CounterScreen } from './src/presentation/screens/CounterScreen'
import { PaperProvider } from 'react-native-paper'
import { CounterM3Screen } from './src/presentation/screens/CounterM3Screen'
import IonIcon from 'react-native-vector-icons/Ionicons'
import { BoxObjectModelScreen } from './src/presentation/screens/BoxObjectModelScreen'
import { DimensionScreen } from './src/presentation/screens/DimensionScreen'
import { PositionScreen } from './src/presentation/screens/PositionScreen'
import { FlexScreen } from './src/presentation/screens/FlexScreen'
import { FlexDirectionScreen } from './src/presentation/screens/FlexDirectionScreen'
import { HomeworkScreen } from './src/presentation/screens/HomeworkScreen'
export const App = () => {
return (
<PaperProvider
settings={{
icon: (props) => <IonIcon {...props} />
}}
>
<SafeAreaView style={{ flex: 1}}>
<HomeworkScreen />
{/*<FlexDirectionScreen />*/}
{/*<FlexScreen />*/}
{/*<PositionScreen />*/}
{/*<DimensionScreen />*/}
{/*<BoxObjectModelScreen />*/}
{/*<CounterM3Screen />*/}
{/*<CounterScreen />*/}
{/*<HelloWorldScreen name='Ricardo @rickUIO' />*/}
</SafeAreaView>
</PaperProvider>
)
}