]> git.proxmox.com Git - flutter/proxmox_login_manager.git/commitdiff
login form: set TextInputAction.next for origin field
authorThomas Lamprecht <t.lamprecht@proxmox.com>
Wed, 5 Jul 2023 10:11:17 +0000 (12:11 +0200)
committerThomas Lamprecht <t.lamprecht@proxmox.com>
Wed, 5 Jul 2023 10:11:25 +0000 (12:11 +0200)
changes the "enter" button in the virtual keyboard on iOS and
Android to a next arrow

Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
lib/proxmox_login_form.dart

index 048fa236730a843e54d37e6b61ec3f7dfdc41991..1509e1032e83b04cfbeb40f86ff400c4e1090170 100644 (file)
@@ -78,6 +78,7 @@ class _ProxmoxLoginFormState extends State<ProxmoxLoginForm> {
             hintText: 'e.g. 192.168.1.2',
             helperText:
                 'Protocol (https) and default port (8006 or 443) implied'),
+        textInputAction: TextInputAction.next,
         controller: widget.originController,
         validator: widget.originValidator,
         onFieldSubmitted: (value) => widget.onOriginSubmitted(),