forked from phamminhduc-1998/ReactNative-DemoAppWallpaper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathThongTin.js
29 lines (26 loc) · 1.05 KB
/
ThongTin.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
import { StatusBar } from 'expo-status-bar';
import React from 'react';
import { StyleSheet, Text, View, Image } from 'react-native';
import { Feather } from '@expo/vector-icons'
export default function ThongTin() {
return (
<View style={styles.container}>
<Image style={{ width: 400, height: 400 }} source={require('../assets/LogoReactNative.png')} />
<Text style={{ fontSize: 30, color: '#282c37', marginBottom: 10 }}>Admin : Phạm Minh Đức</Text>
<Text style={{ fontSize: 20, color: '#282c37', marginBottom: 10 }}>MSSV: PH09506</Text>
<View style={{ flexDirection: 'row' }}>
<Feather name='disc' size={30} color='#f9c00c' />
<Text style={{ margin: 5, fontSize: 18, color: '#282c37' }}>App Wallpaper </Text>
</View>
<StatusBar style="auto" />
</View>
);
}
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: '#548687',
alignItems: 'center',
justifyContent: 'center',
},
});