Commit 48881347 by tungnq

TODO: Đã fix giao diện notification

parent 077fbd2c
......@@ -43,7 +43,7 @@ const styles = StyleSheet.create({
shadowColor: R.colors.black,
shadowOffset: {
width: 0,
height: 2,
height: 1,
},
shadowOpacity: 0.5,
shadowRadius: 1,
......
......@@ -4,6 +4,7 @@ import {
View,
TouchableOpacity,
FlatList,
SafeAreaView,
} from "react-native";
import Header from "../../components/Header/Header";
import ItemEmpty from "../../components/List/ItemEmpty";
......@@ -51,7 +52,7 @@ const NotificationView = (props) => {
</TouchableOpacity>
);
return (
<View style={styles.container}>
<SafeAreaView style={styles.container}>
<Header
title={I18n.t("Notification")}
/>
......@@ -82,8 +83,8 @@ const NotificationView = (props) => {
)}
/>
</View>
</View>
);
</SafeAreaView>
);
};
export default NotificationView;
......
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