stylesheet.ts 324 B

1234567891011121314151617181920
  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. });
  19. export default stylesheet;