From db6513818daa6686f078b633b6398d655c14ee2f Mon Sep 17 00:00:00 2001 From: fufesou Date: Sat, 25 Mar 2023 16:34:41 +0800 Subject: [PATCH] some comments Signed-off-by: fufesou --- flutter/lib/common/widgets/dialog.dart | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/flutter/lib/common/widgets/dialog.dart b/flutter/lib/common/widgets/dialog.dart index af75a557b..cc815c5a3 100644 --- a/flutter/lib/common/widgets/dialog.dart +++ b/flutter/lib/common/widgets/dialog.dart @@ -496,6 +496,11 @@ _connectDialog( } submit() { + // to-do: + // username and password are about remote OS account. + // If the remote side is headless. + // The client side should login to remote OS account, to enable X desktop session. + // `username` and `password` will be used in the near future. final username = usernameController?.text.trim() ?? ''; final password = passwordController?.text.trim() ?? ''; final peerPassword = peerPasswordController?.text.trim() ?? '';