armadiazrino

Untitled

Jun 23rd, 2022
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.87 KB | None | 0 0
  1. import {StyleSheet} from 'react-native';
  2.  
  3. export default StyleSheet.create({
  4. container: {
  5. flex: 1,
  6. justifyContent: 'center',
  7. alignItems: 'center',
  8. paddingHorizontal: 16,
  9. backgroundColor: 'tomato',
  10. },
  11. image: {
  12. width: 128,
  13. height: 128,
  14. },
  15. email: {
  16. borderWidth: 1,
  17. width: '100%',
  18. marginTop: 32,
  19. padding: 8,
  20. borderRadius: 10,
  21. },
  22. password: {
  23. borderWidth: 1,
  24. width: '100%',
  25. marginTop: 16,
  26. padding: 8,
  27. borderRadius: 10,
  28. },
  29. button: {
  30. width: '100%',
  31. alignItems: 'center',
  32. backgroundColor: 'black',
  33. padding: 10,
  34. borderRadius: 10,
  35. marginTop: 16,
  36. },
  37. buttonText: {
  38. fontWeight: 'bold',
  39. color: 'white',
  40. fontSize: 16,
  41. },
  42. textWelcome: {
  43. fontWeight: 'bold',
  44. fontSize: 24,
  45. marginTop: 16,
  46. color: 'white',
  47. },
  48. });
  49.  
Advertisement
Add Comment
Please, Sign In to add comment