Skip to content

TextInputs are customizable now 😍

Compare
Choose a tag to compare
@WrathChaos WrathChaos released this 03 Oct 07:20
· 426 commits to master since this release

TextInputs are customizable now 😍

export interface IInteractiveTextInputProps extends TextInputProps {
    style?: CustomStyleProp;
    textInputStyle?: CustomTextStyleProp;
    iconContainerStyle?: CustomStyleProp;
    iconImageStyle?: CustomImageStyleProp;
    iconImageSource?: ImageSourcePropType;
    ImageComponent?: any;
    IconComponent?: any;
    enableIcon?: boolean;
    mainColor?: string;
    originalColor?: string;
    animatedPlaceholderTextColor?: string;
    onFocus?: () => void;
    onBlur?: () => void;
    onIconPress?: () => void;
}