Skip to content

Commit

Permalink
flutter 3.27.0
Browse files Browse the repository at this point in the history
  • Loading branch information
simplezhli committed Dec 13, 2024
1 parent cede8b6 commit 5a45005
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 18 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/flutter-drive.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
# https://github.com/marketplace/actions/flutter-action
- uses: subosito/flutter-action@v2
with:
flutter-version: '3.24.0'
flutter-version: '3.27.0'
channel: 'stable' # or: 'dev' or 'beta'
- run: "flutter clean"
- name: "Run Flutter Driver tests"
Expand All @@ -76,7 +76,7 @@ jobs:
java-version: "17"
- uses: subosito/flutter-action@v2
with:
flutter-version: '3.24.0'
flutter-version: '3.27.0'
channel: 'stable' # or: 'dev' or 'beta'
- name: "Run Flutter Driver tests"
# GitHub Action for installing, configuring and running Android Emulators (work only Mac OS)
Expand All @@ -101,7 +101,7 @@ jobs:
# https://github.com/marketplace/actions/flutter-action
- uses: subosito/flutter-action@v2
with:
flutter-version: '3.24.0'
flutter-version: '3.27.0'
channel: 'stable'
- run: "flutter pub get"
- name: "Run Flutter Accessibility Tests"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/flutter-web-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ name: flutter_deer web deploy
on:
push:
paths:
- 'pubspec.yaml1'
- 'pubspec.yaml'

jobs:
web_build_and_deploy:
Expand All @@ -14,7 +14,7 @@ jobs:
- uses: actions/[email protected]
- uses: subosito/flutter-action@v2
with:
flutter-version: '3.22.0'
flutter-version: '3.27.0'
channel: 'stable'
architecture: x64
- name: "Web Build 🔧"
Expand Down
4 changes: 2 additions & 2 deletions README-EN.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,9 +66,9 @@ For web experience, please visit: https://simplezhli.github.io/flutter_deer/

[![flutter_deer driver](https://github.com/simplezhli/flutter_deer/actions/workflows/flutter-drive.yml/badge.svg?branch=master)](https://github.com/simplezhli/flutter_deer/actions/workflows/flutter-drive.yml)

1. Flutter version 3.24.0
1. Flutter version 3.27.0

2. Dart version 3.5.0
2. Dart version 3.6.0

## Precautions to be taken.

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,9 +66,9 @@ Web体验地址:https://simplezhli.github.io/flutter_deer/

[![flutter_deer driver](https://github.com/simplezhli/flutter_deer/actions/workflows/flutter-drive.yml/badge.svg?branch=master)](https://github.com/simplezhli/flutter_deer/actions/workflows/flutter-drive.yml)

1. Flutter version 3.24.0
1. Flutter version 3.27.0

2. Dart version 3.5.0
2. Dart version 3.6.0

## 注意事项

Expand Down
9 changes: 1 addition & 8 deletions lib/widgets/progress_dialog.dart
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,7 @@ class ProgressDialog extends Dialog {
final Widget progress = Column(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
Theme(
data: ThemeData(
cupertinoOverrideTheme: const CupertinoThemeData(
brightness: Brightness.dark, // 局部指定夜间模式,加载圈颜色会设置为白色
),
),
child: const CupertinoActivityIndicator(radius: 14.0),
),
const CupertinoActivityIndicator(radius: 14.0, color: Colors.grey,),
Gaps.vGap8,
Text(hintText, style: const TextStyle(color: Colors.white),)
],
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ dependencies:
# 图片选择插件 https://github.com/flutter/packages/tree/main/packages/image_picker
image_picker: 1.1.2
# 侧滑删除 https://github.com/letsar/flutter_slidable
flutter_slidable: ^3.1.1
flutter_slidable: ^3.1.2
# WebView插件 https://github.com/flutter/packages/tree/main/packages/webview_flutter
webview_flutter: 4.8.0
# 处理键盘事件 https://github.com/diegoveloper/flutter_keyboard_actions
Expand Down

0 comments on commit 5a45005

Please sign in to comment.