Skip to content

bottomsheet elevation not user adjustable #55

bottomsheet elevation not user adjustable

bottomsheet elevation not user adjustable #55

Workflow file for this run

name: Test Package
on:
pull_request:
branches:
- '**'
workflow_dispatch:
jobs:
lint_and_test:
name: Linting and Testing
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
with:
submodules: true
- name: Setup Flutter Environment
uses: subosito/flutter-action@v2
with:
channel: 'stable'
- name: Install Dependencies
run: dart pub get
- name: Analyze Project
run: dart analyze
- name: Verify Format
run: dart format --output=none --set-exit-if-changed .
- name: Run tests
run: flutter test -r github