We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
export default class Login extends Component { render() { return ( <Fumi style={styles.input} label={'mobile'} iconClass={FontAwesomeIcon} labelStyle={styles.input_label} iconName={'mobile'} iconColor={'#f95a25'} iconSize={20} iconWidth={40} inputPadding={16} /> ); } }
const styles = StyleSheet.create({ input_label: { fontFamily: 'yekan', }, });
The text was updated successfully, but these errors were encountered:
have same issue
Sorry, something went wrong.
@kavehnaseri @sinclaireric @wtfckkk
I had the same problem with Hoshi. I tried to make changes to the Hoshi.js file itself, but that didn't work either.
I further investigated it, and I found that fontWeight: 'bold' in styles.textInput was causing this error. This was inside Hoshi.js
After nearly a month, I solved it.
This should solve your problem. Use this:
const styles = StyleSheet.create({ input_label: { fontFamily: 'yekan', fontWeight: null, }, });
No branches or pull requests
export default class Login extends Component {
render() {
return (
<Fumi
style={styles.input}
label={'mobile'}
iconClass={FontAwesomeIcon}
labelStyle={styles.input_label}
iconName={'mobile'}
iconColor={'#f95a25'}
iconSize={20}
iconWidth={40}
inputPadding={16}
/>
);
}
}
const styles = StyleSheet.create({
input_label: {
fontFamily: 'yekan',
},
});
The text was updated successfully, but these errors were encountered: