Guest User

Untitled

a guest
Jul 17th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.82 KB | None | 0 0
  1. <View style={styles.container}>
  2. <Text>Logo</Text>
  3. <View style={styles.loginBox}>
  4. <Text>text input</Text>
  5. </View>
  6. <TouchableOpacity style={styles.button} activeOpacity={.85}>
  7. <Text style={styles.btnText}>LOGIN</Text>
  8. </TouchableOpacity>
  9. </View>
  10.  
  11.  
  12. const styles = StyleSheet.create({
  13. container: {
  14. backgroundColor: '#439c8f',
  15. flex: 0.66,
  16. flexDirection: 'column',
  17. justifyContent: 'flex-end'
  18. },
  19. loginBox: {
  20. backgroundColor: '#ffffff',
  21. flex: 0.60,
  22. flexDirection: 'column',
  23. marginLeft: 10,
  24. marginRight: 10,
  25. justifyContent: 'flex-end',
  26. },
  27. button: {
  28. alignItems: 'center',
  29. backgroundColor: '#6d5cae',
  30. padding: 10,
  31. margin: 40,
  32. borderRadius: 5,
  33. },
  34. btnText: {
  35. color: 'white',
  36. fontWeight: 'bold'
  37. }
  38. });
Add Comment
Please, Sign In to add comment