LoginPage.js 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. import { Image, StyleSheet, Text, View } from 'react-native'
  2. import React from 'react'
  3. import colors from '../theme/colors'
  4. import fonts from '../theme/fonts'
  5. import NewscoutTextLogo from '../components/molecules/NewscoutTextLogo'
  6. import images from '../assets/images/images'
  7. import SecondaryButton from '../components/organisms/Buttons/SecondaryButton'
  8. const LoginPage = ({ navigation }) => {
  9. const homePageNavigation = () => {
  10. navigation.navigate('UnsignedLanding')
  11. }
  12. return (
  13. <View style={[styles.container]}>
  14. <View style={styles.logoContainer}>
  15. <NewscoutTextLogo style={styles.logo} />
  16. </View>
  17. <View style={styles.sketchContainer}>
  18. <Image source={images.getStarted} style={[styles.sketch]}/>
  19. </View>
  20. <View style={styles.taglineContainer}>
  21. <Text style={[styles.tagline,{color:colors.black}]}> Get the latest news from </Text>
  22. <Text style={[styles.tagline,{color:colors.topColor}]}> reliable sources. </Text>
  23. </View>
  24. <SecondaryButton
  25. title="Next"
  26. onPress={homePageNavigation}
  27. />
  28. </View>
  29. )
  30. }
  31. export default LoginPage
  32. const styles = StyleSheet.create({
  33. container: {
  34. backgroundColor: colors.primaryColor_5,
  35. justifyContent:'center',
  36. flex:1,
  37. paddingHorizontal: fonts.getSize(16)
  38. },
  39. button: {
  40. backgroundColor: colors.primaryColor_4
  41. },
  42. buttonStyle: {
  43. fontFamily: 'monospace'
  44. },
  45. logo: {
  46. // width: fonts.getSize(84),
  47. aspectRatio: 3.0,
  48. width: '100%',
  49. height: 64
  50. },
  51. logoContainer: {
  52. justifyContent: 'center',
  53. alignItems: 'center',
  54. paddingVertical: fonts.getSize(32)
  55. },
  56. sketchContainer:{
  57. height: '42.5%',
  58. width: '100%',
  59. },
  60. sketch:{
  61. width:'100%',
  62. height: '100%'
  63. },
  64. taglineContainer:{
  65. padding:fonts.getSize(16),
  66. paddingBottom: fonts.getSize(32)
  67. },
  68. tagline:{
  69. fontFamily: fonts.type.medium,
  70. fontSize: fonts.getSize(20)
  71. }
  72. })