stylesheet.ts 982 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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. customContainer: {
  25. position: "relative",
  26. height: 200
  27. },
  28. title: {
  29. marginBottom: 20
  30. },
  31. descText: {
  32. marginBottom: 20
  33. },
  34. marginContainer: {
  35. marginBottom: 20
  36. },
  37. contentContainer: {
  38. width: "100%",
  39. padding: 20
  40. },
  41. scrollContent: {
  42. flexGrow: 1
  43. },
  44. container: {
  45. flex: 1
  46. }
  47. });
  48. export default stylesheet;