2026-07-01 09:55:55 +05:30

24 lines
498 B
TypeScript

import { StyleSheet } from 'react-native';
import { typography } from '@theme';
export const getStyles = (colors: any) => StyleSheet.create({
container: {
flex: 1,
backgroundColor: colors.background,
},
content: {
padding: 16,
},
sectionTitle: {
fontSize: typography.fontSize.lg,
fontWeight: typography.fontWeight.bold,
color: colors.text,
marginBottom: 16,
},
footer: {
padding: 16,
borderTopWidth: 1,
borderTopColor: colors.border,
},
});