import { Text, TextInput, View } from 'react-native'; export const Field = ({ label, value, onChangeText, placeholder, multiline = false, secureTextEntry = false, keyboardType, }: { label: string; value: string; onChangeText: (value: string) => void; placeholder?: string; multiline?: boolean; secureTextEntry?: boolean; keyboardType?: 'default' | 'email-address' | 'url'; }) => ( {label} );