stylesheet.ts 847 B

12345678910111213141516171819202122232425262728293031323334353637383940
  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. descText: {
  29. marginBottom: 20
  30. },
  31. contentContainer: {
  32. maxWidth: 850,
  33. width: "100%"
  34. },
  35. container: {
  36. flex: 1
  37. }
  38. });
  39. export default stylesheet;