stylesheet.ts 890 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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. scrollContent: {
  20. justifyContent: "center",
  21. alignItems: "center"
  22. },
  23. previewContainer: {
  24. justifyContent: "center",
  25. alignItems: "center",
  26. minHeight: 120
  27. },
  28. title: {
  29. marginBottom: 20
  30. },
  31. descText: {
  32. marginBottom: 20
  33. },
  34. contentContainer: {
  35. width: "100%",
  36. padding: 20
  37. },
  38. container: {
  39. flex: 1
  40. }
  41. });
  42. export default stylesheet;