Commit b8f42e41 by tungnq

TODO: Đã fix xong tất cả giao diện màn hình home và đã fix phần header

parent 74d3ef42
import { Image, StyleSheet, TextInput, View, Platform } from "react-native"; import { Image, StyleSheet, TextInput, View, Platform, SafeAreaView, StatusBar } from "react-native";
import React from "react"; import React from "react";
import R from "../../assets/R"; import R from "../../assets/R";
import styles from "./style"; import styles from "./style";
...@@ -9,7 +9,10 @@ const HeaderHome = (props) => { ...@@ -9,7 +9,10 @@ const HeaderHome = (props) => {
} = props; } = props;
return ( return (
<View style={styles.containerBoxHeader}> <SafeAreaView style={styles.containerBoxHeader}>
<StatusBar
barStyle="light-content"
/>
<View style={styles.boxLogo}> <View style={styles.boxLogo}>
<Image <Image
source={R.images.igLogo} source={R.images.igLogo}
...@@ -35,7 +38,7 @@ const HeaderHome = (props) => { ...@@ -35,7 +38,7 @@ const HeaderHome = (props) => {
style={styles.input} style={styles.input}
/> />
</View> </View>
</View> </SafeAreaView>
); );
}; };
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment