- Bug fixes
- Update web
- Update android
- Update iOS
- Update dependencies webview_flutter
- Fix: Change transparent image to fix image
- Update dependencies
- Fix: Update image error
- Added mouse scrolling
- Fix: Centralized onLoading
- Fix: Centralized onError
- Added build for release with click on image
flutter build web --release
- Added flutter format
- README Update
- Updated documentation
- Added option to enable or disable debug information
debugPrint: true,//or false
- Added option to use 100% of the image
fullScreen: true,//or false
- Added option to directly use CachedNetworkImage to cache images:
imageCache: CachedNetworkImageProvider(imageUrl)
- Removed cacheAndroidIos
- README Update
- Added option to display custom loading:
onLoading: const CircularProgressIndicator(
color: Colors.indigoAccent,
),
- Added option to display custom error:
onError: const Icon(
Icons.error,
color: Colors.red,
),
- README Update
- Added option to embed BoxFit in Image for Android && Ios:
fitAndroidIos: BoxFit.cover,
- Added option to embed BoxFit in Image for Web:
fitWeb: BoxFitWeb.cover,
- Added option to insert border radius in Image:
borderRadius: BorderRadius.circular(70),
-
Added new way to display image
-
Added option to show mouse pointer:
onPointer: true, // or false
- Added option to save images to cache (Not available for Web):
cacheAndroidIos: true, // or false
- Added option to change the fit of android and ios image. You can define it like this:
fitCarouselList: BoxFit.cover
- Added function to get click on the image:
onTap: () {
debugPrint("©gabriel_patrick_souza");
},
- Initial release.