mirror of
https://github.com/lollipopkit/flutter_server_box.git
synced 2026-01-31 13:25:10 +01:00
fix(ssh page): Fix the issue with calculating the height of the virtual keyboard (#1011)
This commit is contained in:
@@ -355,7 +355,7 @@ class SSHPageState extends ConsumerState<SSHPage>
|
||||
onTapUp: (_) => _virtKeyLongPressTimer?.cancel(),
|
||||
child: SizedBox(
|
||||
width: virtKeyWidth,
|
||||
height: _virtKeysHeight / _virtKeysList.length,
|
||||
height: _horizonVirtKeys ? _virtKeysHeight : _virtKeysHeight / _virtKeysList.length,
|
||||
child: Center(child: child),
|
||||
),
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user