Brak opisu

index.android.js 2.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. /**
  2. * Sample React Native App
  3. * https://github.com/facebook/react-native
  4. * @flow
  5. */
  6. import React, { Component } from 'react';
  7. import {
  8. AppRegistry,
  9. StyleSheet,
  10. Text,
  11. View,
  12. Image,
  13. TextInput
  14. } from 'react-native';
  15. import {
  16. InputGroup,
  17. Input,
  18. Button
  19. } from 'native-base';
  20. export default class app extends Component {
  21. render() {
  22. return (
  23. <View style={styles.container}>
  24. <Image
  25. source={require('./images/logo@1x.png')}
  26. />
  27. <Text style={styles.companyName}>
  28. Future Message Service
  29. </Text>
  30. <View style={styles.main}>
  31. <InputGroup borderType="regular" style={styles.account}>
  32. <Input placeholder="Email"/>
  33. </InputGroup>
  34. <InputGroup borderType="regular" style={styles.password}>
  35. <Input placeholder="Password"/>
  36. </InputGroup>
  37. <Button transparent>
  38. <Text style={styles.signup}>
  39. Sign Up
  40. </Text>
  41. </Button>
  42. <Button block style={styles.login}>
  43. Login !
  44. </Button>
  45. </View>
  46. <View style={styles.forgot}>
  47. <Button transparent>
  48. <Text style={styles.signup}>
  49. Forgot password ?
  50. </Text>
  51. </Button>
  52. </View>
  53. </View>
  54. );
  55. }
  56. }
  57. const styles = StyleSheet.create({
  58. container: {
  59. flex: 1,
  60. justifyContent: 'center',
  61. alignItems: 'center',
  62. backgroundColor: '#FFFFFF',
  63. },
  64. companyName: {
  65. fontSize: 20,
  66. textAlign: 'center',
  67. margin: 10,
  68. },
  69. main: {
  70. marginTop: 40,
  71. width: 250
  72. },
  73. account: {
  74. borderBottomColor: 'transparent',
  75. borderTopLeftRadius: 4,
  76. borderTopRightRadius: 4
  77. },
  78. password: {
  79. borderBottomLeftRadius: 4,
  80. borderBottomRightRadius: 4
  81. },
  82. signup: {
  83. fontSize: 14,
  84. textAlign: 'left',
  85. color: '#2987CD'
  86. },
  87. login: {
  88. marginTop: 25,
  89. backgroundColor: '#2987CD'
  90. },
  91. forgot: {
  92. position: 'absolute',
  93. left: 10,
  94. right: 0,
  95. bottom: 10,
  96. flexDirection:'row'
  97. }
  98. });
  99. AppRegistry.registerComponent('app', () => app);