stylesheet.ts 890 B

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