NotificationsPage.js 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. import { ScrollView, StyleSheet, Text, TouchableWithoutFeedback, View } from 'react-native'
  2. import React from 'react'
  3. import NewscoutCenteredTitleHeader from '../components/organisms/Headers/NewscoutCenteredTitleHeader'
  4. import MaterialIcon from 'react-native-vector-icons/MaterialIcons'
  5. import colors from '../theme/colors'
  6. import fonts from '../theme/fonts'
  7. import NotificationSection from '../components/organisms/Sections/NotificationSection'
  8. import { SafeAreaView } from 'react-native-safe-area-context'
  9. const NotificationsPage = props => {
  10. const {
  11. navigation
  12. } = props
  13. return (
  14. <SafeAreaView>
  15. <NewscoutCenteredTitleHeader title={"Notifications"} backButtonShown onBackClick={() => navigation.goBack()}>
  16. <TouchableWithoutFeedback onPress={() => navigation.toggleDrawer()}>
  17. <MaterialIcon name='list' color={colors.topColor} size={30} />
  18. </TouchableWithoutFeedback>
  19. </NewscoutCenteredTitleHeader>
  20. <ScrollView showsVerticalScrollIndicator>
  21. <NotificationSection/>
  22. <NotificationSection/>
  23. </ScrollView>
  24. </SafeAreaView>
  25. )
  26. }
  27. export default NotificationsPage
  28. const styles = StyleSheet.create({
  29. headerTitle: {
  30. fontFamily: fonts.type.semibold,
  31. fontSize: fonts.getSize(16),
  32. color: colors.black,
  33. },
  34. })