stylesheet.ts 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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. rowSpaceBetween: {
  20. justifyContent: "space-between",
  21. flexDirection: "row",
  22. alignItems: "center",
  23. flexWrap: "wrap",
  24. width: "100%"
  25. },
  26. borderedCard: {
  27. backgroundColor: "transparent"
  28. },
  29. scrollContent: {
  30. justifyContent: "center",
  31. alignItems: "center"
  32. },
  33. previewContainer: {
  34. justifyContent: "center",
  35. alignItems: "center",
  36. minHeight: 120
  37. },
  38. paddedMarginContainer: {
  39. justifyContent: "center",
  40. alignItems: "center",
  41. minHeight: 120
  42. },
  43. descText: {
  44. marginBottom: 20
  45. },
  46. marginContainer: {
  47. marginBottom: 20
  48. },
  49. contentContainer: {
  50. maxWidth: 850,
  51. width: "100%"
  52. },
  53. container: {
  54. flex: 1
  55. }
  56. });
  57. export default stylesheet;