From d4d939e368d2923588fdce5920d73a54ed1bef51 Mon Sep 17 00:00:00 2001 From: alkaitagi Date: Sun, 3 Jul 2022 00:42:04 +0300 Subject: [PATCH] Enable notes multiline --- lib/modules/dictionary/screens/word_editor.dart | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/modules/dictionary/screens/word_editor.dart b/lib/modules/dictionary/screens/word_editor.dart index ec353dfc..4fb4303c 100644 --- a/lib/modules/dictionary/screens/word_editor.dart +++ b/lib/modules/dictionary/screens/word_editor.dart @@ -121,6 +121,7 @@ class _WordEditorScreenState extends State { 'General note', word.note, (s) => word.note = s, + multiline: true, lowercase: false, ), ], @@ -166,6 +167,7 @@ class _WordEditorScreenState extends State { u.note, (s) => u.note = s, lowercase: false, + multiline: true, ), ], ),