Skip to content

Add manual scroll view #43

Add manual scroll view

Add manual scroll view #43

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: Flutter testing
# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the main branch
push:
branches: ["main"]
paths-ignore:
- "**/README.md"
- ".github/*"
pull_request:
branches: ["main"]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
name: flutter build
# The type of runner that the job will run on
runs-on: ubuntu-latest
env:
JAVA_VERSION: "11.0"
FLUTTER_VERSION: "3.24.5"
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Java
uses: actions/setup-java@v4
with:
java-version: ${{env.JAVA_VERSION}}
distribution: "temurin"
- name: Setup Flutter
uses: subosito/flutter-action@v2
with:
flutter-version: ${{env.FLUTTER_VERSION}}
- run: flutter pub get
- run: flutter analyze