NoBookmarkSection.js 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. import { Image,ImageBackground, StyleSheet, Text, TouchableWithoutFeedback, View } from 'react-native'
  2. import React from 'react'
  3. import colors from '../../../theme/colors'
  4. import images from '../../../assets/images/images'
  5. import fonts from '../../../theme/fonts'
  6. const NoBookmarkSection = () => {
  7. return (
  8. <View style={styles.container}>
  9. <View style={styles.imageContainer}><Image source={images.noBookmark} style={[styles.image]}/></View>
  10. <Text style={styles.headline}>You have no bookmarked news</Text>
  11. <TouchableWithoutFeedback onPress={null}>
  12. <View style={styles.button}><Text style={styles.buttonText}>Explore News</Text></View>
  13. </TouchableWithoutFeedback>
  14. </View>
  15. )
  16. }
  17. export default NoBookmarkSection
  18. const styles = StyleSheet.create({
  19. container:{
  20. backgroundColor:colors.white,
  21. height:'100%',
  22. alignItems:'center',
  23. justifyContent:'center',
  24. paddingHorizontal: fonts.getSize(16)
  25. },
  26. imageContainer:{
  27. },
  28. image:{
  29. height:300,
  30. width: 300,
  31. maxHeight: '80%',
  32. maxWidth: '80%'
  33. },
  34. headline:{
  35. color: colors.topColor,
  36. fontFamily: fonts.type.semibold,
  37. fontSize: fonts.getSize(16),
  38. paddingBottom: fonts.getSize(32)
  39. },
  40. button:{
  41. backgroundColor: colors.tertiaryColor,
  42. marginHorizontal: fonts.getSize(24),
  43. maxWidth: '100%',
  44. width:'100%',
  45. flexDirection: 'row',
  46. alignItems:'center',
  47. justifyContent:'center',
  48. borderRadius: fonts.getSize(4)
  49. },
  50. buttonText:{
  51. paddingVertical: fonts.getSize(12),
  52. color:colors.white,
  53. fontFamily:fonts.type.regular
  54. }
  55. })