NotificationsPage.js 1.1 KB

123456789101112131415161718192021222324252627282930313233
  1. import { 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. const NotificationsPage = props => {
  8. const {
  9. navigation
  10. } = props
  11. return (
  12. <View>
  13. <NewscoutCenteredTitleHeader title={"Notifications"} backButtonShown onBackClick={() => navigation.goBack()}>
  14. <TouchableWithoutFeedback onPress={() => navigation.toggleDrawer()}>
  15. <MaterialIcon name='list' color={colors.topColor} size={30} />
  16. </TouchableWithoutFeedback>
  17. </NewscoutCenteredTitleHeader>
  18. </View>
  19. )
  20. }
  21. export default NotificationsPage
  22. const styles = StyleSheet.create({
  23. headerTitle: {
  24. fontFamily: fonts.type.semibold,
  25. fontSize: fonts.getSize(16),
  26. color: colors.black,
  27. },
  28. })