Commit 48881347 by tungnq

TODO: Đã fix giao diện notification

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