-
Notifications
You must be signed in to change notification settings - Fork 9
Open
Description
export type PhoneInputProps = {
autoFocus?: boolean;
value?: string;
defaultValues?: {
countryCode: CountryCode;
callingCode: CallingCode;
phoneNumber: string;
};
disabled?: boolean;
hideDropdownIcon?: boolean;
onChangeCountry?: (country: Country) => void;
onChangeText?: (text: string) => void;
renderCustomDropdown?: JSX.Element;
theme?: Theme;
maskInputProps?: MaskInputProps;
countryPickerProps?: Parameters[0];
flagProps?: Parameters[0];
isCallingCodeEditable?: boolean;
dropDownImageProps?: ImageProps;
};
interface Theme {
containerStyle?: StyleProp;
textInputStyle?: StyleProp;
codeTextStyle?: StyleProp;
flagButtonStyle?: StyleProp;
dropDownImageStyle?: StyleProp;
enableDarkTheme?: boolean;
}
export {};
There's not a placeholderTextColor
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels