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