No Description

styles.ts 662B

1234567891011121314151617181920212223242526272829303132333435363738
  1. import {StyleSheet} from 'react-native';
  2. const styles = StyleSheet.create({
  3. root:{
  4. flexDirection: 'row',
  5. borderWidth: 2,
  6. borderColor:'#d1d1d1',
  7. borderRadius: 20,
  8. backgroundColor: '#fff',
  9. marginVertical: 5,
  10. },
  11. imagen:{
  12. flex:2,
  13. height:150,
  14. resizeMode:'contain',
  15. },
  16. right_container: {
  17. padding:10,
  18. flex:3,
  19. },
  20. producto: {
  21. fontSize:18,
  22. },
  23. price:{
  24. fontSize:18,
  25. fontWeight:'bold',
  26. padding:10,
  27. },
  28. comerciante:{
  29. fontSize:10,
  30. padding:10,
  31. },
  32. insignia:{
  33. width: 50,
  34. height: 50,
  35. resizeMode:'contain',
  36. },
  37. });
  38. export default styles;