Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions lib/src/providers/asset_provider.dart
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,11 @@ class AssetLottie extends LottieProvider {
await LottieComposition.fromByteData(data, decoder: decoder);
}

for (var image in composition.images.values) {
final loadImageFutures = composition.images.values.map((image) async {
image.loadedImage ??= await _loadImage(composition, image);
}
});

await Future.wait(loadImageFutures);

await ensureLoadedFonts(composition);

Expand Down
Loading