chore: set max lines for feedback text field (#5714)
This commit is contained in:
parent
672c17361e
commit
55de949924
1 changed files with 2 additions and 1 deletions
|
|
@ -51,7 +51,8 @@ class _FeedbackDialogState extends State<FeedbackDialog> {
|
|||
onFieldSubmitted: _feedbackController.text.isNotEmpty
|
||||
? (value) => widget.onSubmit(value)
|
||||
: null,
|
||||
maxLines: null,
|
||||
minLines: 1,
|
||||
maxLines: 5,
|
||||
onTapOutside: (_) => FocusManager.instance.primaryFocus?.unfocus(),
|
||||
),
|
||||
],
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue