NotificationSection.js 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. import { SafeAreaView, StyleSheet, Text, View } from 'react-native'
  2. import React from 'react'
  3. import NotificationCard from '../Cards/NotificationCard'
  4. import { getDate } from '../../../utils/Constants/functions'
  5. import fonts from '../../../theme/fonts'
  6. import colors from '../../../theme/colors'
  7. import images from '../../../assets/images/images'
  8. const NotificationSection = ({ navigation }) => {
  9. return (
  10. <View >
  11. <Text style={styles.timestampText}>{getDate("2023-06-16T11:57:52.458032Z")}</Text>
  12. <View style={{paddingHorizontal: 8,gap: 8}}>
  13. <NotificationCard
  14. image={images.imageCard}
  15. profileImage={images.horizontalCard}
  16. headline={"semi has posted new politics news"}
  17. tagline={"semi has posted new politics news"}
  18. timestamp={"2023-04-16T11:57:52.458032Z"}
  19. />
  20. <NotificationCard />
  21. <NotificationCard />
  22. <NotificationCard />
  23. </View>
  24. </View>
  25. )
  26. }
  27. export default NotificationSection
  28. const styles = StyleSheet.create({
  29. timestampText:{
  30. padding: 8,
  31. fontFamily: fonts.type.light,
  32. color: colors.grayShade_100
  33. },
  34. notificationContainer:{
  35. }
  36. })