FaridSafi / react-native-gifted-form

📝 « One React-Native form component to rule them all »
MIT License
1.44k stars 214 forks source link

Why my project doesn't appear checkmark icon #102

Open GyyBest opened 7 years ago

GyyBest commented 7 years ago

I check the icon in the react-native-gifted-form/icons/color folder, but I follow the example After I change the textInput content, the checkmark icon or delete_sign icon never show up, any suggestions please? image

GyyBest commented 7 years ago

`render() { return (

{ navigator.push(route); }} clearOnClose={false} defaults={{ emailAddress: '', password: '', }} validators={{ emailAddress: { title: 'Email address', validate: [{ validator: 'isLength', arguments: [6,255], },{ validator: 'isEmail', }] }, password: { title: 'Password', validate: [{ validator: 'isLength', arguments: [6,16], message: 'Please confirm your {TITLE}' }] }, }} > {AppStrings.t('connect')} {AppStrings.t('mail_address')} { this.setState({email: text}); }}/> {AppStrings.t('password')} { this.setState({password: text}); }}/> this.onPressLogin()} style={styles.button} underlayColor='#81C25D'> {AppStrings.t('sign_in')}
);

} }` Here are my code, thanks in advance