stylesheet.ts 982 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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. flexGrow: 1
  11. },
  12. container: {
  13. flex: 1
  14. },
  15. title: {
  16. marginBottom: 20
  17. },
  18. descText: {
  19. marginBottom: 20
  20. },
  21. previewContainer: {
  22. justifyContent: "center",
  23. alignItems: "center",
  24. minHeight: 120
  25. },
  26. rowContainer: {
  27. alignItems: "center",
  28. justifyContent: "space-between",
  29. flexDirection: "row",
  30. flexWrap: "wrap",
  31. width: "100%"
  32. },
  33. switchesContainer: {
  34. justifyContent: "space-between",
  35. alignItems: "center",
  36. flexDirection: "row",
  37. flexWrap: "wrap",
  38. width: "100%"
  39. },
  40. marginContainer: {
  41. marginBottom: 20
  42. },
  43. customContainer: {
  44. position: "relative",
  45. height: 200
  46. }
  47. });
  48. export default stylesheet;