stylesheet.ts 971 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. import {
  2. StyleSheet
  3. } from "react-native";
  4. const stylesheet = StyleSheet.create({
  5. rowContainer: {
  6. justifyContent: "space-between",
  7. alignItems: "center",
  8. flexDirection: "row",
  9. flexWrap: "wrap",
  10. width: "100%"
  11. },
  12. switchesContainer: {
  13. justifyContent: "space-between",
  14. alignItems: "center",
  15. flexDirection: "row",
  16. flexWrap: "wrap",
  17. width: "100%"
  18. },
  19. modalContent: {
  20. backgroundColor: "white",
  21. borderRadius: 10,
  22. padding: 20,
  23. gap: 20
  24. },
  25. previewContainer: {
  26. justifyContent: "center",
  27. alignItems: "center",
  28. minHeight: 120
  29. },
  30. title: {
  31. marginBottom: 20
  32. },
  33. descText: {
  34. marginBottom: 20
  35. },
  36. contentContainer: {
  37. width: "100%",
  38. padding: 20
  39. },
  40. scrollContent: {
  41. flexGrow: 1
  42. },
  43. container: {
  44. flex: 1
  45. }
  46. });
  47. export default stylesheet;