LoginPage.js 2.3 KB

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