image_loader_flutter 0.0.9 copy "image_loader_flutter: ^0.0.9" to clipboard
image_loader_flutter: ^0.0.9 copied to clipboard

The package enhances performance with image caching, ensuring smooth and efficient image rendering in your Flutter apps.

How to use #

Load Network Image

 SizedBox(
    height: 100,
    width: 100,
    child: ImageLoaderFlutterWidgets(
          radius: 0,
          circle: false,
          image: "https://codingislife.net/wp-content/uploads/2023/09/Untitled_design__1___2_-removebg-preview-215x38.png",
        ),
    )

Load File Image

 SizedBox(
    height: 100,
    width: 100,
    child: ImageLoaderFlutterWidgets(
          radius: 0,
          circle: false,
          image: File("file_path").path,
        ),
    )

Load Assets Image

 SizedBox(
    height: 100,
    width: 100,
    child: ImageLoaderFlutterWidgets(
          radius: 0,
          circle: false,
          image: "assets/images/file_name.png",
        ),
    )

VIew fullscreen image

 SizedBox(
    height: 100,
    width: 100,
    child: ImageLoaderFlutterWidgets(
          radius: 0,
          circle: false,
          onTap: true,
          image: "assets/images/file_name.png",
        ),
    )

Show custom radius

 SizedBox(
    height: 100,
    width: 100,
    child: ImageLoaderFlutterWidgets(
          radius: 10,
          circle: false,
          onTap: true,
          image: "assets/images/file_name.png",
        ),
    )

Show circle image

 SizedBox(
    height: 100,
    width: 100,
    child: ImageLoaderFlutterWidgets(
          radius: 0,
          circle: true,
          image: "assets/images/file_name.png",
        ),
    )
2
likes
140
points
72
downloads

Publisher

verified publishercodingislife.net

Weekly Downloads

The package enhances performance with image caching, ensuring smooth and efficient image rendering in your Flutter apps.

Repository (GitHub)

Documentation

API reference

License

MIT (license)

Dependencies

cached_network_image, flutter, photo_view

More

Packages that depend on image_loader_flutter