add comment

Signed-off-by: fufesou <shuanglongchen@yeah.net>
This commit is contained in:
fufesou 2023-11-16 23:39:07 +08:00
parent faa4c36956
commit 722c789448

View File

@ -448,6 +448,9 @@ class _RemotePageState extends State<RemotePage> {
height: 0,
child: !_showEdit
? Container()
// A container wrapper is needed here on some android devices for flutter 3.13.9, otherwise the focusNode will not work.
// But for flutter 3.10.*, the container wrapper is not needed.
// It maybe the flutter compatibility issue.
: Container(
child: TextFormField(
textInputAction: TextInputAction.newline,