Skip to content

Commit dccb8f1

Browse files
authored
Flutter 3.32 (#2618)
Updates samples for release 3.32 ## Pre-launch Checklist - [x] I read the [Flutter Style Guide] _recently_, and have followed its advice. - [x] I signed the [CLA]. - [x] I read the [Contributors Guide]. - [x] I have added sample code updates to the [changelog]. - [x] I updated/added relevant documentation (doc comments with `///`). If you need help, consider asking for advice on the #hackers-devrel channel on [Discord]. <!-- Links --> [Flutter Style Guide]: https://github.com/flutter/flutter/blob/master/docs/contributing/Style-guide-for-Flutter-repo.md [CLA]: https://cla.developers.google.com/ [Discord]: https://github.com/flutter/flutter/blob/master/docs/contributing/Chat.md [Contributors Guide]: https://github.com/flutter/samples/blob/main/CONTRIBUTING.md [changelog]: ../CHANGELOG.md
1 parent 03420bc commit dccb8f1

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

simplistic_editor/lib/basic_text_field.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ class _BasicTextFieldState extends State<BasicTextField> {
7474
}
7575

7676
if (cause == SelectionChangedCause.longPress ||
77-
cause == SelectionChangedCause.scribble) {
77+
cause == SelectionChangedCause.stylusHandwriting) {
7878
return true;
7979
}
8080

simplistic_editor/lib/basic_text_input_client.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -837,7 +837,7 @@ class BasicTextInputClientState extends State<BasicTextInputClient>
837837
case SelectionChangedCause.drag:
838838
case SelectionChangedCause.forcePress:
839839
case SelectionChangedCause.longPress:
840-
case SelectionChangedCause.scribble:
840+
case SelectionChangedCause.stylusHandwriting:
841841
case SelectionChangedCause.tap:
842842
case SelectionChangedCause.toolbar:
843843
requestKeyboard();

tool/flutter_ci_script_beta.sh

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,7 @@ declare -ar PROJECT_NAMES=(
5959
"provider_shopper"
6060
"simple_shader"
6161
"simplistic_calculator"
62-
# TODO(ewindmill): 'scribble' is deprecated and shouldn't be used. Use stylusHandwriting instead.
63-
# "simplistic_editor"
62+
"simplistic_editor"
6463
"testing_app"
6564
"veggieseasons"
6665
"web_embedding/element_embedding_demo"

tool/flutter_ci_script_master.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,8 @@ declare -ar PROJECT_NAMES=(
5151
"google_maps"
5252
"infinite_list"
5353
"ios_app_clip"
54-
"isolate_example"
54+
# TODO(ewindmill): replace deprecated activeColor with activeThumbColor in 3.33
55+
# "isolate_example"
5556
"material_3_demo"
5657
"navigation_and_routing"
5758
"place_tracker"
@@ -62,8 +63,7 @@ declare -ar PROJECT_NAMES=(
6263
"provider_shopper"
6364
"simple_shader"
6465
"simplistic_calculator"
65-
# TODO(ewindmill): 'scribble' is deprecated and shouldn't be used. Use stylusHandwriting instead.
66-
# "simplistic_editor"
66+
"simplistic_editor"
6767
"testing_app"
6868
"veggieseasons"
6969
"web_embedding/element_embedding_demo"

tool/flutter_ci_script_stable.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,8 @@ declare -ar PROJECT_NAMES=(
5757
"provider_shopper"
5858
"simple_shader"
5959
"simplistic_calculator"
60-
"simplistic_editor"
60+
# TODO(@ewindmill) -
61+
# "simplistic_editor"
6162
"testing_app"
6263
"veggieseasons"
6364
"web_embedding/element_embedding_demo"

0 commit comments

Comments
 (0)