File tree Expand file tree Collapse file tree
wallet_view/transaction_views Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -104,6 +104,10 @@ class _EditNoteViewState extends ConsumerState<EditTradeNoteView> {
104104 autocorrect: Util .isDesktop ? false : true ,
105105 enableSuggestions:
106106 Util .isDesktop ? false : true ,
107+ minLines: 3 ,
108+ maxLines: 6 ,
109+ keyboardType: TextInputType .multiline,
110+ textInputAction: TextInputAction .newline,
107111 controller: _noteController,
108112 style: STextStyles .field (context),
109113 focusNode: noteFieldFocusNode,
Original file line number Diff line number Diff line change @@ -126,6 +126,10 @@ class _EditNoteViewState extends ConsumerState<EditNoteView> {
126126 child: TextField (
127127 autocorrect: Util .isDesktop ? false : true ,
128128 enableSuggestions: Util .isDesktop ? false : true ,
129+ minLines: 3 ,
130+ maxLines: 6 ,
131+ keyboardType: TextInputType .multiline,
132+ textInputAction: TextInputAction .newline,
129133 controller: _noteController,
130134 style:
131135 isDesktop
You can’t perform that action at this time.
0 commit comments