Skip to content

Commit 4c460ea

Browse files
chore: Update Flutter version to 3.41.0 in workflows
1 parent 2d0cd0e commit 4c460ea

3 files changed

Lines changed: 12 additions & 9 deletions

File tree

.github/workflows/flutter.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@ jobs:
2020
- name: Install Flutter
2121
uses: subosito/flutter-action@v2
2222
with:
23-
flutter-version: '3.10.0'
23+
flutter-version: '3.41.0'
2424
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'
25+
cache-key: 'flutter-macos-stable-3.41.0-apple'
26+
cache-path: '${{ runner.tool_cache }}/flutter/macos-stable-3.41.0-apple'
27+
pub-cache-key: 'flutter-pub-macos-stable-3.41.0-apple'
2828

2929
- name: Install dependencies
3030
run: flutter pub get

.github/workflows/web-example-release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,11 @@ jobs:
2929
- name: Flutter action
3030
uses: subosito/flutter-action@v2.13.0
3131
with:
32-
flutter-version: '3.32.5'
32+
flutter-version: '3.41.0'
3333
cache: true
34-
cache-key: 'flutter-3.32.5-stable'
35-
cache-path: '${{ runner.tool_cache }}/flutter/3.32.5-stable'
36-
pub-cache-key: 'flutter-pub-3.32.5-stable'
34+
cache-key: 'flutter-3.41.0-stable'
35+
cache-path: '${{ runner.tool_cache }}/flutter/3.41.0-stable'
36+
pub-cache-key: 'flutter-pub-3.41.0-stable'
3737
- name: Setup Pages
3838
uses: actions/configure-pages@v5
3939
- name: Project Clean Up

lib/src/widget/floating_action_widget.dart

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,10 @@ class FloatingActionWidget extends StatelessWidget {
171171
bottom: bottom,
172172
width: width,
173173
height: height,
174-
child: Material(type: MaterialType.transparency, color: Colors.transparent, child: child),
174+
child: Material(
175+
type: MaterialType.transparency,
176+
color: Colors.transparent,
177+
child: child),
175178
);
176179
}
177180
}

0 commit comments

Comments
 (0)