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