File tree 4 files changed +13
-3
lines changed
4 files changed +13
-3
lines changed Original file line number Diff line number Diff line change 17
17
uses : VeryGoodOpenSource/very_good_workflows/.github/workflows/semantic_pull_request.yml@v1
18
18
19
19
build :
20
+ strategy :
21
+ matrix :
22
+ flutter-version :
23
+ # The version of Flutter to use should use the minimum Dart SDK version supported by the package,
24
+ # refer to https://docs.flutter.dev/development/tools/sdk/releases.
25
+ - " 3.16.0"
26
+ - " 3.x"
20
27
runs-on : ubuntu-latest
21
28
steps :
22
29
- name : 📚 Git Checkout
25
32
- name : 🐦 Setup Flutter
26
33
uses : subosito/flutter-action@v2
27
34
with :
35
+ flutter-version : ${{matrix.flutter-version}}
28
36
channel : stable
29
37
cache : true
38
+ cache-key : flutter-:os:-:channel:-:version:-:arch:-:hash:-${{ hashFiles('**/pubspec.lock') }}
30
39
31
40
- name : 📦 Install Dependencies
32
41
run : flutter packages get
64
73
with :
65
74
channel : stable
66
75
cache : true
76
+ cache-key : flutter-:os:-:channel:-:version:-:arch:-:hash:-${{ hashFiles('**/pubspec.lock') }}
67
77
68
78
- name : 📁 Build and release
69
79
uses : bluefireteam/flutter-gh-pages@v8
Original file line number Diff line number Diff line change @@ -121,7 +121,7 @@ class GiffyBottomSheet extends StatelessWidget {
121
121
122
122
/// Creates an giffy bottom sheet which uses a [RiveAnimation] as the [giffy] .
123
123
const GiffyBottomSheet .rive (
124
- RiveAnimation rive, {
124
+ rive. RiveAnimation rive, {
125
125
super .key,
126
126
this .giffyBuilder = defaultGiffyBuilder,
127
127
this .giffyPadding,
Original file line number Diff line number Diff line change @@ -137,7 +137,7 @@ class GiffyDialog extends StatelessWidget {
137
137
138
138
/// Creates a giffy dialog which uses a [RiveAnimation] as the [giffy] .
139
139
const GiffyDialog .rive (
140
- RiveAnimation rive, {
140
+ rive. RiveAnimation rive, {
141
141
super .key,
142
142
this .giffyBuilder = defaultGiffyBuilder,
143
143
this .giffyPadding,
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ import 'dart:ui';
2
2
3
3
import 'package:flutter/material.dart' ;
4
4
import 'package:lottie/lottie.dart' ;
5
- import 'package:rive/rive.dart' hide Image ;
5
+ import 'package:rive/rive.dart' as rive ;
6
6
7
7
import 'entry_animation.dart' ;
8
8
You can’t perform that action at this time.
0 commit comments