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
10 changes: 3 additions & 7 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,6 @@ jobs:
channel:
- 'stable'
- 'beta'
- 'dev'
- 'master'
package:
- 'performance'
fail-fast: false
Expand All @@ -25,14 +23,14 @@ jobs:

steps:
- uses: actions/checkout@v2.3.5
- uses: subosito/flutter-action@v1.5.3
- uses: subosito/flutter-action@v2
with:
channel: ${{ matrix.channel }}
- name: pub get
run: flutter pub get
working-directory: ${{ env.working-directory }}
- name: dart format
run: dart format . --fix --set-exit-if-changed
run: dart format . --set-exit-if-changed
working-directory: ${{ env.working-directory }}
- run: flutter analyze
working-directory: ${{ env.working-directory }}
Expand All @@ -46,8 +44,6 @@ jobs:
channel:
- 'stable'
- 'beta'
- 'dev'
- 'master'
package:
- 'performance'
fail-fast: false
Expand All @@ -56,7 +52,7 @@ jobs:

steps:
- uses: actions/checkout@v2.3.5
- uses: subosito/flutter-action@v1.5.3
- uses: subosito/flutter-action@v2
with:
channel: ${{ matrix.channel }}
- run: flutter pub get
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/hosting.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- uses: actions/checkout@v2.3.5
with:
persist-credentials: false
- uses: subosito/flutter-action@v1.5.3
- uses: subosito/flutter-action@v2
with:
channel: 'stable'

Expand Down
2 changes: 2 additions & 0 deletions performance/example/lib/main.dart
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,7 @@ class _HomePageState extends State<_HomePage> {
children: [
const Text('play funvas'),
Switch(
// ignore: deprecated_member_use
activeColor:
Theme.of(context).colorScheme.secondary,
value: _funvasPlaying,
Expand All @@ -130,6 +131,7 @@ class _HomePageState extends State<_HomePage> {
children: [
const Text('enable overlay'),
Switch(
// ignore: deprecated_member_use
activeColor:
Theme.of(context).colorScheme.secondary,
value: _overlayEnabled,
Expand Down
Loading