Skip to content

Default barrierColor to be same as backgroundColor when useSafeArea: true #85

Default barrierColor to be same as backgroundColor when useSafeArea: true

Default barrierColor to be same as backgroundColor when useSafeArea: true #85

Workflow file for this run

# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
name: Tests
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
flutter-version: ['any', '3.7.0', '3.10.0', '3.16.3'] # Specify versions here
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: '12.x'
- uses: subosito/flutter-action@v2
with:
channel: 'stable'
flutter-version: ${{ matrix.flutter-version }}
- name: Print version
run: flutter --version
- name: Install dependencies
run: flutter pub get
- name: Analyze project source
run: flutter analyze
- name: Run tests
run: flutter test