Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/flutter.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@ jobs:
- name: Install Flutter
uses: subosito/flutter-action@v2
with:
flutter-version: '3.10.0'
flutter-version: '3.41.0'
cache: true
cache-key: 'flutter-macos-stable-3.10.0-apple'
cache-path: '${{ runner.tool_cache }}/flutter/macos-stable-3.10.0-apple'
pub-cache-key: 'flutter-pub-macos-stable-3.10.0-apple'
cache-key: 'flutter-macos-stable-3.41.0-apple'
cache-path: '${{ runner.tool_cache }}/flutter/macos-stable-3.41.0-apple'
pub-cache-key: 'flutter-pub-macos-stable-3.41.0-apple'

- name: Install dependencies
run: flutter pub get
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/web-example-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,11 @@ jobs:
- name: Flutter action
uses: subosito/flutter-action@v2.13.0
with:
flutter-version: '3.32.5'
flutter-version: '3.41.0'
cache: true
cache-key: 'flutter-3.32.5-stable'
cache-path: '${{ runner.tool_cache }}/flutter/3.32.5-stable'
pub-cache-key: 'flutter-pub-3.32.5-stable'
cache-key: 'flutter-3.41.0-stable'
cache-path: '${{ runner.tool_cache }}/flutter/3.41.0-stable'
pub-cache-key: 'flutter-pub-3.41.0-stable'
- name: Setup Pages
uses: actions/configure-pages@v5
- name: Project Clean Up
Expand Down
5 changes: 4 additions & 1 deletion lib/src/widget/floating_action_widget.dart
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,10 @@ class FloatingActionWidget extends StatelessWidget {
bottom: bottom,
width: width,
height: height,
child: Material(type: MaterialType.transparency, color: Colors.transparent, child: child),
child: Material(
type: MaterialType.transparency,
color: Colors.transparent,
child: child),
);
}
}
Loading