stylesheet.ts 668 B

123456789101112131415161718192021222324252627282930313233343536
  1. import {
  2. StyleSheet
  3. } from "react-native";
  4. const stylesheet = StyleSheet.create({
  5. rowContainer: {
  6. flexDirection: "row"
  7. },
  8. borderedCard: {
  9. borderRadius: 12
  10. },
  11. rowContainer2: {
  12. flexDirection: "row",
  13. flexWrap: "wrap"
  14. },
  15. borderedCard2: {
  16. borderRadius: 8
  17. },
  18. borderedCard3: {
  19. borderRadius: 8
  20. },
  21. borderedCard4: {
  22. borderRadius: 8
  23. },
  24. borderedCard5: {
  25. borderRadius: 8
  26. },
  27. borderedCard6: {
  28. borderRadius: 8
  29. },
  30. rowSpaceBetween: {
  31. justifyContent: "space-between",
  32. flexDirection: "row"
  33. }
  34. });
  35. export default stylesheet;