Releases: xsahil03x/giffy_dialog
Releases · xsahil03x/giffy_dialog
v2.3.0
What's Changed
- feat: bump min flutter version to 3.22.0 by @xsahil03x in #115
Full Changelog: v2.2.0...v2.3.0
v2.2.0
What's Changed
- fix: Image is imported from both Rive and Flutter. by @xsahil03x in #111
Full Changelog: v2.1.0...v2.2.0
v2.1.0
What's Changed
- Bump rive version to ^0.13.0.
- Bump lottie version to ^3.0.0.
- Bump minimum Flutter version to 3.16.0.
Full Changelog: v2.0.0...v2.1.0
v2.0.0
🚨 Breaking
- The
NetworkGiffyDialog
class has been replaced with theGiffyDialog.image
constructor. - The
image
property in the old API is now can be set using theImage.network
in the new API. - The
AssetGiffyDialog
class has been replaced with theGiffyDialog.image
constructor. - The
image
property in the old API is now can be set using theImage.asset
in the new API. - The
FlareGiffyDialog
class has been replaced with theGiffyDialog.rive
constructor. - The
flarePath
andflareAnimation
properties in the old API is now can be set using therive
property of
typeRiveAnimation
in the new API. - The
description
property in the old API is now can be set using thecontent
widget in the new API. - The
onOkButtonPressed
andonCancelButtonPressed
properties in the old API are replaced with theactions
property in the new API to handle button actions. - The
onlyOkButton
,onlyCancelButton
,buttonOkText
,buttonCancelText
and all the other button
related properties in the old API is no longer available and has been replaced with theactions
property in the
new API to handle button actions. - The
cornerRadius
property in the old API is now can be set using theshape
property in the new API. - A new
GiffyDialog.lottie
constructor has been added to support Lottie animations.