Resolves #126 Connection settings save button

This commit is contained in:
Yegor Vialov
2018-10-06 20:03:20 +03:00
parent c2b88c8a12
commit 17a3bd8d35
2 changed files with 76 additions and 25 deletions

View File

@ -62,7 +62,9 @@ class _TextEntityWidgetState extends _EntityWidgetState {
new TextEditingValue(
text: _tmpValue,
selection:
new TextSelection.collapsed(offset: _tmpValue.length))),
new TextSelection.collapsed(offset: _tmpValue.length)
)
),
onChanged: (value) {
_tmpValue = value;
}),