opt.: ssh tab top padding

This commit is contained in:
lollipopkit
2024-03-25 00:41:34 -06:00
parent b6a797c993
commit bfece9ae7d
3 changed files with 10 additions and 5 deletions

View File

@@ -375,7 +375,10 @@ final class _AppBar extends CustomAppBar {
valueListenable: selectIndex,
builder: (_, idx, __) {
if (idx == AppTab.ssh.index) {
return SizedBox(height: CustomAppBar.barHeight);
return SizedBox(
height: CustomAppBar.barHeight ??
0 + MediaQuery.of(context).padding.top,
);
}
return super.build(context);
},