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(),
|
onTapUp: (_) => _virtKeyLongPressTimer?.cancel(),
|
||||||
child: SizedBox(
|
child: SizedBox(
|
||||||
width: virtKeyWidth,
|
width: virtKeyWidth,
|
||||||
height: _virtKeysHeight / _virtKeysList.length,
|
height: _horizonVirtKeys ? _virtKeysHeight : _virtKeysHeight / _virtKeysList.length,
|
||||||
child: Center(child: child),
|
child: Center(child: child),
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
|
|||||||
Reference in New Issue
Block a user