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
As the title states.
The data is
const images = [ { uri: "data:image/jpeg;base64,sadflhasdefkjdhskj2345jfhkj2bdf" } ]
I tested my base64 encoded string with react-native's built-in Image component and passed in
Image
<Image style={{width: 300, height: 300}} source={{uri: images[0].uri}} />
and the image gets displayed.
When I try to do
<Image style={{width: 300, height: 300}} preview={{ uri: images[0].uri }} tint="light" uri={images[0].uri} />
I see the blurred preview of my image, but it doesn't actually render all the way which is very strange.
I think I might be misunderstanding something?
The text was updated successfully, but these errors were encountered:
Same issue I'm facing
Sorry, something went wrong.
No branches or pull requests
As the title states.
The data is
I tested my base64 encoded string with react-native's built-in
Image
component and passed inand the image gets displayed.
When I try to do
I see the blurred preview of my image, but it doesn't actually render all the way which is very strange.
I think I might be misunderstanding something?
The text was updated successfully, but these errors were encountered: