stylesheet.ts 445 B

12345678910111213141516171819202122232425
  1. import {
  2. StyleSheet
  3. } from "react-native";
  4. const stylesheet = StyleSheet.create({
  5. previewContainer: {
  6. justifyContent: "center",
  7. alignItems: "center",
  8. minHeight: 120,
  9. zIndex: 99
  10. },
  11. marginContainer: {
  12. marginBottom: 20
  13. },
  14. contentContainer: {
  15. flex: 1
  16. },
  17. scrollContent: {
  18. flexGrow: 1
  19. },
  20. container: {
  21. flex: 1
  22. }
  23. });
  24. export default stylesheet;