|
@@ -1,9 +1,11 @@
|
|
-import { StyleSheet, Text, TouchableWithoutFeedback, View } from 'react-native'
|
|
|
|
|
|
+import { ScrollView, StyleSheet, Text, TouchableWithoutFeedback, View } from 'react-native'
|
|
import React from 'react'
|
|
import React from 'react'
|
|
import NewscoutCenteredTitleHeader from '../components/organisms/Headers/NewscoutCenteredTitleHeader'
|
|
import NewscoutCenteredTitleHeader from '../components/organisms/Headers/NewscoutCenteredTitleHeader'
|
|
import MaterialIcon from 'react-native-vector-icons/MaterialIcons'
|
|
import MaterialIcon from 'react-native-vector-icons/MaterialIcons'
|
|
import colors from '../theme/colors'
|
|
import colors from '../theme/colors'
|
|
import fonts from '../theme/fonts'
|
|
import fonts from '../theme/fonts'
|
|
|
|
+import NotificationSection from '../components/organisms/Sections/NotificationSection'
|
|
|
|
+import { SafeAreaView } from 'react-native-safe-area-context'
|
|
|
|
|
|
const NotificationsPage = props => {
|
|
const NotificationsPage = props => {
|
|
const {
|
|
const {
|
|
@@ -11,14 +13,19 @@ const NotificationsPage = props => {
|
|
} = props
|
|
} = props
|
|
|
|
|
|
return (
|
|
return (
|
|
- <View>
|
|
|
|
|
|
+ <SafeAreaView>
|
|
<NewscoutCenteredTitleHeader title={"Notifications"} backButtonShown onBackClick={() => navigation.goBack()}>
|
|
<NewscoutCenteredTitleHeader title={"Notifications"} backButtonShown onBackClick={() => navigation.goBack()}>
|
|
|
|
|
|
<TouchableWithoutFeedback onPress={() => navigation.toggleDrawer()}>
|
|
<TouchableWithoutFeedback onPress={() => navigation.toggleDrawer()}>
|
|
<MaterialIcon name='list' color={colors.topColor} size={30} />
|
|
<MaterialIcon name='list' color={colors.topColor} size={30} />
|
|
</TouchableWithoutFeedback>
|
|
</TouchableWithoutFeedback>
|
|
</NewscoutCenteredTitleHeader>
|
|
</NewscoutCenteredTitleHeader>
|
|
- </View>
|
|
|
|
|
|
+ <ScrollView showsVerticalScrollIndicator>
|
|
|
|
+ <NotificationSection/>
|
|
|
|
+ <NotificationSection/>
|
|
|
|
+ </ScrollView>
|
|
|
|
+
|
|
|
|
+ </SafeAreaView>
|
|
)
|
|
)
|
|
}
|
|
}
|
|
|
|
|