stylesheet.ts 668 B

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