stylesheet.ts 279 B

1234567891011121314151617
  1. import {
  2. StyleSheet
  3. } from "react-native";
  4. const stylesheet = StyleSheet.create({
  5. container: {
  6. flex: 1
  7. },
  8. contentContainer: {
  9. width: "100%",
  10. padding: 20
  11. },
  12. scrollContent: {
  13. flexGrow: 1
  14. }
  15. });
  16. export default stylesheet;