-
-
Notifications
You must be signed in to change notification settings - Fork 23
New issue
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
[Feature Request] Support Requesting Multiple Images (Multi-URI) #106
Comments
I could be able to handle this by Here is my code: <StackLayout [visibility]="item.isLoadingThumb ? 'visible' : 'collapse'">
<FrescoDrawee verticalAlignment="center" aspectRatio="1"
fadeDuration="1" blurRadius="3" autoPlayAnimations="false"
[imageUri]="'http://domain.com/'+item.post_picture_thumb"></FrescoDrawee>
</StackLayout>
<StackLayout [visibility]="item.isLoadingMain ? 'visible' : 'collapse'">
<FrescoDrawee verticalAlignment="center" aspectRatio="1"
fadeDuration="1" (finalImageSet)="onFinalImageSet($event, i)"
autoPlayAnimations="false" [imageUri]="'http://domain/'+item.post_picture"></FrescoDrawee>
</StackLayout> And TS: onFinalImageSet(args: FinalEventData, count) {
console.log(count); // Only print up to 4
this.items[count].isLoadingThumb = false;
this.items[count].isLoadingMain = true;
} |
That is very strange that works fine with |
Hi @vahidvdn, As discussed in this thread #50 we will be deprecating the fresco plugin and redirect users to the nativescript-image plugin, which can be used in both Android and iOS. There is still some polishing work to be done before we finalize the process, but we will not be including new functionalities in the fresco plugin. |
Hi @elena-p Thanks for your reply. So, waiting for upcoming news for the new plugin. Cheers. |
Hi @vahidvdn, |
Hi @elena-p |
Is there any way to have Multiple Images (Multi-URI)? As native plugin supports it.
I want to first load a smaller image , then show a high resolution image. Any idea?
The text was updated successfully, but these errors were encountered: