flutter_url_image_load_fail 1.0.0 copy "flutter_url_image_load_fail: ^1.0.0" to clipboard
flutter_url_image_load_fail: ^1.0.0 copied to clipboard

Flutter - Load a Image from an URL and define widgets to loading and failed states

flutter_url_image_load_fail #

Flutter Widget that allows load images from an URL and define the Widgets that will be shown on loading, loaded with success and failed to load states

Getting Started #

Alt Text

Add the dependency on pubspec.yaml

dependencies:
  flutter_url_image_load_fail: ^1.0.0

Import the Widget

import 'package:flutter_url_image_load_fail/flutter_url_image_load_fail.dart';

Instantiate the LoadImageFromUrl Widget and use it

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: Text('flutter_url_image_load_fail example'),
      ),
      body: Center(
        child: LoadImageFromUrl(
          imageUrl: 'https://upload.wikimedia.org/wikipedia/commons/1/17/Google-flutter-logo.png', //Image URL to load
          buildSuccessWidget:  (image) => image,
          buildLoadingWidget:  () => Text('Loading...'),
          buildFailedWidget: (retryLoadImage, code, message){
              return ElevatedButton(
                child: Text('Try Again'),
                onPressed: (){
                  retryLoadImage();
                },
              );
            },
            requestTimeout: Duration(seconds: 5) //Optionally set the timeout
        ),
      ),
    );
  }
1
likes
110
pub points
49%
popularity

Publisher

verified publisherwisetap.com

Flutter - Load a Image from an URL and define widgets to loading and failed states

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter

More

Packages that depend on flutter_url_image_load_fail