stylesheet.ts 995 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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. paddedMarginContainer: {
  29. justifyContent: "center",
  30. minHeight: 120
  31. },
  32. descText: {
  33. marginBottom: 20
  34. },
  35. marginContainer: {
  36. marginBottom: 20
  37. },
  38. contentContainer: {
  39. maxWidth: 850,
  40. width: "100%"
  41. },
  42. container: {
  43. flex: 1
  44. }
  45. });
  46. export default stylesheet;