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
Style is not working if source is static. "react-native-image-progress": "^1.1.1",
const imgContent = photo ? <Image source={{ uri: photo }} style={styles.profile} borderRadius={25} /> : <Image source={require('./logo_small.png')} style={styles.profile} borderRadius={25} />;
The text was updated successfully, but these errors were encountered:
I have fix this by setting width and height to the image.
ImagePicker.showImagePicker(this.options, (response) => { const res = { ...response }; res.width = 120; res.height = 120; this.setState({ profilePic: res }); });
Sorry, something went wrong.
No branches or pull requests
Style is not working if source is static.
"react-native-image-progress": "^1.1.1",
const imgContent = photo ? <Image source={{ uri: photo }} style={styles.profile} borderRadius={25} /> : <Image source={require('./logo_small.png')} style={styles.profile} borderRadius={25} />;
The text was updated successfully, but these errors were encountered: