Skip to content

Commit 6673879

Browse files
authored
scrollable: true for MaterialTextInputDialog (#144)
2 parents ab94431 + 204c99a commit 6673879

File tree

4 files changed

+7
-2
lines changed

4 files changed

+7
-2
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 2.4.2
2+
3+
- Set `scrollable: true` to MaterialTextInputDialog (#143, #144)
4+
15
## 2.4.1
26

37
- Trim empty newline when there are no validation message on iOS

example/pubspec.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ packages:
1515
path: ".."
1616
relative: true
1717
source: path
18-
version: "2.4.1"
18+
version: "2.4.2"
1919
analyzer:
2020
dependency: transitive
2121
description:

lib/src/text_input_dialog/material_text_input_dialog.dart

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,7 @@ class _MaterialTextInputDialogState extends State<MaterialTextInputDialog> {
100100
key: _formKey,
101101
child: AlertDialog(
102102
title: titleText,
103+
scrollable: true,
103104
content: Column(
104105
mainAxisSize: MainAxisSize.min,
105106
crossAxisAlignment: CrossAxisAlignment.start,

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: adaptive_dialog
22
description: Show alert dialog or modal action sheet adaptively according to platform.
3-
version: 2.4.1
3+
version: 2.4.2
44
repository: https://github.com/mono0926/adaptive_dialog
55
funding:
66
- https://github.com/sponsors/mono0926

0 commit comments

Comments
 (0)