Last updated:
0 purchases
image loader flutter
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",
),
)
copied to clipboard
Load File Image
SizedBox(
height: 100,
width: 100,
child: ImageLoaderFlutterWidgets(
radius: 0,
circle: false,
image: File("file_path").path,
),
)
copied to clipboard
Load Assets Image
SizedBox(
height: 100,
width: 100,
child: ImageLoaderFlutterWidgets(
radius: 0,
circle: false,
image: "assets/images/file_name.png",
),
)
copied to clipboard
VIew fullscreen image
SizedBox(
height: 100,
width: 100,
child: ImageLoaderFlutterWidgets(
radius: 0,
circle: false,
onTap: true,
image: "assets/images/file_name.png",
),
)
copied to clipboard
Show custom radius
SizedBox(
height: 100,
width: 100,
child: ImageLoaderFlutterWidgets(
radius: 10,
circle: false,
onTap: true,
image: "assets/images/file_name.png",
),
)
copied to clipboard
Show circle image
SizedBox(
height: 100,
width: 100,
child: ImageLoaderFlutterWidgets(
radius: 0,
circle: true,
image: "assets/images/file_name.png",
),
)
copied to clipboard
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.