armadiazrino

Untitled

Jun 22nd, 2022
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.89 KB | None | 0 0
  1. import {StyleSheet} from 'react-native';
  2. import globalStyle from '../../configs/globalStyle';
  3.  
  4. export default StyleSheet.create({
  5. container: {
  6. flexDirection: 'row',
  7. alignItems: 'center',
  8. backgroundColor: 'white',
  9. marginHorizontal: 24,
  10. marginBottom: 24,
  11. padding: 16,
  12. borderRadius: 16,
  13. ...globalStyle.shadow,
  14. },
  15. title: {
  16. fontWeight: 'bold',
  17. fontSize: 20,
  18. marginHorizontal: 24,
  19. },
  20. image: {
  21. width: 128,
  22. height: 128,
  23. borderRadius: 24,
  24. },
  25. titleContainer: {
  26. marginLeft: 16,
  27. flex: 1,
  28. },
  29. itemTitle: {
  30. fontWeight: 'bold',
  31. fontSize: 18,
  32. marginBottom: 8,
  33. },
  34. flatListContainer: {
  35. marginTop: 16,
  36. },
  37. flex: {
  38. flex: 1,
  39. },
  40. emptyImage: {
  41. height: 400,
  42. width: '100%',
  43. },
  44. emptyTitle: {
  45. textAlign: 'center',
  46. fontWeight: 'bold',
  47. fontSize: 24,
  48. },
  49. });
  50.  
Advertisement
Add Comment
Please, Sign In to add comment