stylesheet.ts 847 B

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