2026-07-16 20:04:40 +05:30

38 lines
823 B
TypeScript

import { StyleSheet } from 'react-native';
import { ThemeColors } from '../../theme';
export const getStyles = (colors: ThemeColors) =>
StyleSheet.create({
container: {
marginBottom: 16,
},
label: {
fontSize: 14,
fontWeight: '600',
color: colors.text,
marginBottom: 8,
},
required: {
color: '#EF4444',
marginLeft: 2,
},
pickerContainer: {
backgroundColor: colors.surface,
borderWidth: 1,
borderColor: colors.border,
borderRadius: 10,
flexDirection: 'row',
alignItems: 'center',
justifyContent: 'space-between',
paddingHorizontal: 16,
paddingVertical: 12,
},
pickerText: {
fontSize: 15,
color: colors.text,
},
placeholder: {
color: colors.textMuted,
},
});