Skip to content

Commit 9fe9cea

Browse files
committed
Fix regression in AlertDialog and BottomSheet controls
Fix #1344
1 parent f01e34a commit 9fe9cea

File tree

6 files changed

+13
-5
lines changed

6 files changed

+13
-5
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Flet changelog
22

3+
## 0.6.1
4+
5+
* Fix regression in `AlertDialog` and `BottomSheet` controls ([#1344](https://github.com/flet-dev/flet/issues/1344))
6+
37
## 0.6.0
48

59
* `Canvas` control ([docs](https://flet.dev/docs/controls/canvas)).

client/pubspec.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ packages:
175175
path: "../package"
176176
relative: true
177177
source: path
178-
version: "0.6.0"
178+
version: "0.6.1"
179179
flutter:
180180
dependency: "direct main"
181181
description: flutter

package/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 0.6.1
2+
3+
* Fix regression in `AlertDialog` and `BottomSheet` controls ([#1344](https://github.com/flet-dev/flet/issues/1344))
4+
15
## 0.6.0
26

37
* `Canvas` control ([docs](https://flet.dev/docs/controls/canvas)).

package/lib/src/models/control.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,10 +45,10 @@ class Control extends Equatable {
4545

4646
bool get isNonVisual {
4747
return [
48-
"alertdialog",
48+
//"alertdialog",
4949
"audio",
5050
"banner",
51-
"bottomsheet",
51+
//"bottomsheet",
5252
"clipboard",
5353
"filepicker",
5454
"hapticfeedback",

package/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: flet
22
description: Write entire Flutter app in Python or add server-driven UI experience into existing Flutter app.
33
homepage: https://flet.dev
44
repository: https://github.com/flet-dev/flet
5-
version: 0.6.0
5+
version: 0.6.1
66

77
# This package supports all platforms listed below.
88
platforms:

studio/client/pubspec.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ packages:
175175
path: "../../package"
176176
relative: true
177177
source: path
178-
version: "0.6.0"
178+
version: "0.6.1"
179179
flutter:
180180
dependency: "direct main"
181181
description: flutter

0 commit comments

Comments
 (0)