Skip to content

Latest commit

 

History

History
134 lines (94 loc) · 1.94 KB

CHANGELOG.md

File metadata and controls

134 lines (94 loc) · 1.94 KB

2.6.0

  • Bug fixes
  • Update web
  • Update android
  • Update iOS

2.5.4

  • Update dependencies webview_flutter

2.5.3+1

  • Fix: Change transparent image to fix image
  • Update dependencies

2.5.2

  • Fix: Update image error

2.5.1

  • Added mouse scrolling
  • Fix: Centralized onLoading
  • Fix: Centralized onError

2.5.0

  • Added build for release with click on image
flutter build web --release

2.4.1+1

  • Added flutter format

2.4.1

  • README Update
  • Updated documentation

2.4.0

  • Added option to enable or disable debug information
debugPrint: true,//or false
  • Added option to use 100% of the image
fullScreen: true,//or false

2.3.0

  • Added option to directly use CachedNetworkImage to cache images:
imageCache: CachedNetworkImageProvider(imageUrl)
  • Removed cacheAndroidIos

2.2.0+1

  • README Update

2.2.0

  • 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,
),

2.1.0+1

  • README Update

2.1.0

  • 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),

2.0.0

  • 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");
},

1.0.0

  • Initial release.