Skip to content

Commit fb07c32

Browse files
committed
fix: 🐛 Added flutter version in github actions
1 parent d0e07b9 commit fb07c32

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

.github/workflows/flutter.yaml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,13 @@ jobs:
1919
- uses: actions/checkout@v2
2020
- name: Install Flutter
2121
uses: subosito/flutter-action@v1
22+
with:
23+
flutter-version: '3.10.0'
24+
cache: true
25+
cache-key: 'flutter-macos-stable-3.10.0-apple'
26+
cache-path: '${{ runner.tool_cache }}/flutter/macos-stable-3.10.0-apple'
27+
pub-cache-key: 'flutter-pub-macos-stable-3.10.0-apple'
28+
2229
- name: Install dependencies
2330
run: flutter packages get
2431
- name: Code Formatting

lib/src/utils/overlay_manager.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ class OverlayManager {
196196
final controllerLength = controllers.length;
197197
return [
198198
for (var i = 0; i < controllerLength; i++)
199-
if (controllers[i].linkedShowcaseDataModel case final model?) model
199+
if (controllers[i].linkedShowcaseDataModel case final model?) model,
200200
];
201201
}
202202

0 commit comments

Comments
 (0)