-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.tsx
More file actions
35 lines (31 loc) · 1.04 KB
/
App.tsx
File metadata and controls
35 lines (31 loc) · 1.04 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
35
import {View} from 'react-native';
import {Icons} from './components/Icons';
export default function App() {
return (
<View style={{
flex: 1,
flexDirection:'column',
backgroundColor: '#2c3e50',
alignItems: 'center',
justifyContent: 'center',
}}>
<View style={{
flexDirection:'row',
marginBottom: 20
}}>
<Icons.bird stroke={'#16a085'} width={70} height={70} style={{margin:5}}/>
<Icons.squirrel stroke={'#2980b9'} width={70} height={70} style={{margin:5}}/>
<Icons.snail stroke={'#8e44ad'} width={70} height={70} style={{margin:5}}/>
</View>
<Icons.trees width={80} height={80} stroke={'#FFF'} />
<View style={{
flexDirection:'row',
marginTop: 20
}}>
<Icons.rabbit stroke={'#f39c12'} width={70} height={70} style={{margin:5}}/>
<Icons.rat stroke={'#d35400'} width={70} height={70} style={{margin:5}}/>
<Icons.turtle stroke={'#c0392b'} width={70} height={70} style={{margin:5}}/>
</View>
</View>
);
}