1234567891011121314151617181920212223242526272829 |
- import { StyleSheet } from "react-native";
-
- export const globalStyles = StyleSheet.create({
- container: {
- flex: 1,
- padding: 20,
- },
-
- tittleText: {
- fontSize: 18,
- color: '#333',
- },
-
- paragraph: {
- marginVertical: 8,
- lineHeight: 20,
- },
-
- button: {
- alignItems: 'center',
- justifyContent: 'center',
- paddingVertical: 12,
- paddingHorizontal: 32,
- borderRadius: 4,
- elevation: 3,
- backgroundColor: '#e81b39',
- }
- });
|