Skip to content

Releases: xsahil03x/giffy_dialog

v2.1.0

11 Mar 21:58
6c4852c
Compare
Choose a tag to compare

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

24 Jun 15:17
57b7286
Compare
Choose a tag to compare

🚨 Breaking

  • The NetworkGiffyDialog class has been replaced with the GiffyDialog.image constructor.
  • The image property in the old API is now can be set using the Image.network in the new API.
  • The AssetGiffyDialog class has been replaced with the GiffyDialog.image constructor.
  • The image property in the old API is now can be set using the Image.asset in the new API.
  • The FlareGiffyDialog class has been replaced with the GiffyDialog.rive constructor.
  • The flarePath and flareAnimation properties in the old API is now can be set using the rive property of
    type RiveAnimation in the new API.
  • The description property in the old API is now can be set using the content widget in the new API.
  • The onOkButtonPressed and onCancelButtonPressed properties in the old API are replaced with the actions
    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 the actions property in the
    new API to handle button actions.
  • The cornerRadius property in the old API is now can be set using the shape property in the new API.
  • A new GiffyDialog.lottie constructor has been added to support Lottie animations.