stylesheet.ts 666 B

123456789101112131415161718192021222324252627282930313233
  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. scrollContent: {
  13. justifyContent: "center",
  14. alignItems: "center"
  15. },
  16. previewContainer: {
  17. justifyContent: "center",
  18. alignItems: "center",
  19. minHeight: 120
  20. },
  21. descText: {
  22. marginBottom: 20
  23. },
  24. contentContainer: {
  25. maxWidth: 850,
  26. width: "100%"
  27. },
  28. container: {
  29. flex: 1
  30. }
  31. });
  32. export default stylesheet;