File tree Expand file tree Collapse file tree 8 files changed +19
-13
lines changed
Expand file tree Collapse file tree 8 files changed +19
-13
lines changed Original file line number Diff line number Diff line change 2222 flutter-version :
2323 # The version of Flutter to use should use the minimum Dart SDK version supported by the package,
2424 # refer to https://docs.flutter.dev/development/tools/sdk/releases.
25- - " 3.16 .0"
25+ - " 3.22 .0"
2626 - " 3.x"
2727 runs-on : ubuntu-latest
2828 steps :
Original file line number Diff line number Diff line change 1+ ## Upcoming
2+
3+ - Bump rive version to ` ^0.13.10 ` .
4+ - Bump lottie version to ` ^3.1.0 ` .
5+ - Bump minimum Flutter version to ` 3.22.0 ` .
6+
17## 2.2.0
28
39- Fix ` Image ` is imported from both packages. [ #110 ] ( https://github.com/xsahil03x/giffy_dialog/issues/110 )
410
511## 2.1.0
612
7- - Bump rive version to ^0.13.0.
8- - Bump lottie version to ^3.0.0.
9- - Bump minimum Flutter version to 3.16.0.
13+ - Bump rive version to ` ^0.13.0 ` .
14+ - Bump lottie version to ` ^3.0.0 ` .
15+ - Bump minimum Flutter version to ` 3.16.0 ` .
1016
1117## 2.0.0+2
1218
Original file line number Diff line number Diff line change @@ -5,8 +5,8 @@ publish_to: 'none'
55version : 1.0.0+1
66
77environment :
8- sdk : ^3.2 .0
9- flutter : " >=3.16 .0"
8+ sdk : ^3.4 .0
9+ flutter : " >=3.22 .0"
1010
1111dependencies :
1212 flutter :
Original file line number Diff line number Diff line change 11library ;
22
33export 'package:lottie/lottie.dart' ;
4- export 'package:rive/rive.dart' ;
4+ export 'package:rive/rive.dart' hide Image ;
55
66export 'src/entry_animation.dart' show EntryAnimation;
77export 'src/giffy_modal.dart' show GiffyDialog, GiffyBottomSheet;
Original file line number Diff line number Diff line change @@ -121,7 +121,7 @@ class GiffyBottomSheet extends StatelessWidget {
121121
122122 /// Creates an giffy bottom sheet which uses a [RiveAnimation] as the [giffy] .
123123 const GiffyBottomSheet .rive (
124- rive. RiveAnimation rive, {
124+ RiveAnimation rive, {
125125 super .key,
126126 this .giffyBuilder = defaultGiffyBuilder,
127127 this .giffyPadding,
Original file line number Diff line number Diff line change @@ -137,7 +137,7 @@ class GiffyDialog extends StatelessWidget {
137137
138138 /// Creates a giffy dialog which uses a [RiveAnimation] as the [giffy] .
139139 const GiffyDialog .rive (
140- rive. RiveAnimation rive, {
140+ RiveAnimation rive, {
141141 super .key,
142142 this .giffyBuilder = defaultGiffyBuilder,
143143 this .giffyPadding,
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ import 'dart:ui';
22
33import 'package:flutter/material.dart' ;
44import 'package:lottie/lottie.dart' ;
5- import 'package:rive/rive.dart' as rive ;
5+ import 'package:rive/rive.dart' hide Image ;
66
77import 'entry_animation.dart' ;
88
Original file line number Diff line number Diff line change @@ -6,13 +6,13 @@ repository: https://github.com/xsahil03x/giffy_dialog
66issue_tracker : https://github.com/xsahil03x/giffy_dialog/issues
77
88environment :
9- sdk : ^3.2 .0
10- flutter : " >=3.16 .0"
9+ sdk : ^3.4 .0
10+ flutter : " >=3.22 .0"
1111
1212dependencies :
1313 flutter :
1414 sdk : flutter
15- rive : ^0.13.0
15+ rive : ^0.13.10
1616 lottie : ^3.1.0
1717
1818dev_dependencies :
You can’t perform that action at this time.
0 commit comments