Skip to content

Commit

Permalink
Fix regression in AlertDialog and BottomSheet controls
Browse files Browse the repository at this point in the history
  • Loading branch information
FeodorFitsner authored and zrr1999 committed Jul 17, 2024
1 parent eacfb97 commit 081debf
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Flet changelog

## 0.6.1

* Fix regression in `AlertDialog` and `BottomSheet` controls ([#1344](https://github.com/flet-dev/flet/issues/1344))

## 0.6.0

* `Canvas` control ([docs](https://flet.dev/docs/controls/canvas)).
Expand Down
2 changes: 1 addition & 1 deletion client/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ packages:
path: "../package"
relative: true
source: path
version: "0.6.0"
version: "0.6.1"
flutter:
dependency: "direct main"
description: flutter
Expand Down
4 changes: 4 additions & 0 deletions package/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 0.6.1

* Fix regression in `AlertDialog` and `BottomSheet` controls ([#1344](https://github.com/flet-dev/flet/issues/1344))

## 0.6.0

* `Canvas` control ([docs](https://flet.dev/docs/controls/canvas)).
Expand Down
4 changes: 2 additions & 2 deletions package/lib/src/models/control.dart
Original file line number Diff line number Diff line change
Expand Up @@ -45,10 +45,10 @@ class Control extends Equatable {

bool get isNonVisual {
return [
"alertdialog",
//"alertdialog",
"audio",
"banner",
"bottomsheet",
//"bottomsheet",
"clipboard",
"filepicker",
"hapticfeedback",
Expand Down
2 changes: 1 addition & 1 deletion package/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: flet
description: Write entire Flutter app in Python or add server-driven UI experience into existing Flutter app.
homepage: https://flet.dev
repository: https://github.com/flet-dev/flet
version: 0.6.0
version: 0.6.1

# This package supports all platforms listed below.
platforms:
Expand Down
2 changes: 1 addition & 1 deletion studio/client/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ packages:
path: "../../package"
relative: true
source: path
version: "0.6.0"
version: "0.6.1"
flutter:
dependency: "direct main"
description: flutter
Expand Down

0 comments on commit 081debf

Please sign in to comment.