Student Reviews
( 5 Of 5 )
1 review
Video of 13- Flutter Fade in images with an assets placeholder (Arabic) in Flutter course by Code2Start - Mohamed Fathy Taha channel, video No. 13 free certified online
You can also consider using local assets for placeholders. First, add the asset to the project’s pubspec.yaml file
flutter:
assets:
+ - assets/loading.gif
Then, use the FadeInImage.assetNetwork() constructor:
FadeInImage.assetNetwork(
placeholder: 'assets/loading.gif',
image: 'https://picsum.photos/250?image9',
);