| 1234567891011121314151617181920 |
- import {
- StyleSheet
- } from "react-native";
- const stylesheet = StyleSheet.create({
- contentContainer: {
- padding: 20,
- width: "100%"
- },
- scrollContent: {
- flexGrow: 1
- },
- container: {
- flex: 1
- },
- title: {
- marginBottom: 20
- }
- });
- export default stylesheet;
|