Skip to content

Commit 4a0a2f6

Browse files
authored
Merge pull request #412 from AhmedLSayed9/update_goldens
Update golden files to match Flutter 3.32.0 rendering changes
2 parents d62f1e4 + b60675d commit 4a0a2f6

43 files changed

Lines changed: 8 additions & 2 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

README.md

Lines changed: 4 additions & 1 deletion

packages/dropdown_button2_test/lib/src/form_field_example.dart

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ class _FormFieldExampleState extends State<FormFieldExample> {
3434
hintStyle: const TextStyle(fontSize: 14),
3535
border: OutlineInputBorder(
3636
borderRadius: BorderRadius.circular(15),
37+
gapPadding: 0,
3738
),
3839
),
3940
),
@@ -44,6 +45,7 @@ class _FormFieldExampleState extends State<FormFieldExample> {
4445
contentPadding: const EdgeInsets.symmetric(vertical: 16, horizontal: 16),
4546
border: OutlineInputBorder(
4647
borderRadius: BorderRadius.circular(15),
48+
gapPadding: 0,
4749
),
4850
// Add more decoration..
4951
),

packages/dropdown_button2_test/lib/src/search_example.dart

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,7 @@ class _SearchExampleState extends State<SearchExample> {
8888
hintStyle: const TextStyle(fontSize: 12),
8989
border: OutlineInputBorder(
9090
borderRadius: BorderRadius.circular(8),
91+
gapPadding: 0,
9192
),
9293
),
9394
),
@@ -102,7 +103,7 @@ class _SearchExampleState extends State<SearchExample> {
102103
),
103104
//This to clear the search value when you close the menu
104105
onMenuStateChange: (isOpen) {
105-
if (!isOpen) {
106+
if (!isOpen && mounted) {
106107
textEditingController.clear();
107108
}
108109
},
0 Bytes
0 Bytes
0 Bytes
0 Bytes
0 Bytes
9 Bytes
0 Bytes

0 commit comments

Comments
 (0)