From 7be9c5fb9ca9833aa207b6db44b9bbc06dc52ded Mon Sep 17 00:00:00 2001 From: lollipopkit Date: Fri, 15 Mar 2024 17:30:53 +0800 Subject: [PATCH] fix: ssh page keyboard type (#308) --- lib/view/page/ssh/page.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/view/page/ssh/page.dart b/lib/view/page/ssh/page.dart index 2ee1c72f..27234d45 100644 --- a/lib/view/page/ssh/page.dart +++ b/lib/view/page/ssh/page.dart @@ -136,7 +136,7 @@ class _SSHPageState extends State with AutomaticKeepAliveClientMixin { child: TerminalView( _terminal, controller: _terminalController, - keyboardType: TextInputType.emailAddress, + keyboardType: TextInputType.text, enableSuggestions: true, textStyle: _terminalStyle, theme: _terminalTheme,