opt.: server tab navigation bar when landscape

This commit is contained in:
lollipopkit
2024-05-09 18:26:31 +08:00
parent 4d2a944310
commit 131ece725a
9 changed files with 145 additions and 126 deletions

View File

@@ -28,11 +28,12 @@ final class KvRow extends StatelessWidget {
children: [
kBuilder?.call() ?? Text(k, style: UIs.text12),
UIs.width7,
vBuilder?.call() ?? Text(
v,
style: UIs.text11Grey,
overflow: TextOverflow.ellipsis,
),
vBuilder?.call() ??
Text(
v,
style: UIs.text11Grey,
overflow: TextOverflow.ellipsis,
),
if (onTap != null) UIs.width7,
if (onTap != null) const Icon(Icons.keyboard_arrow_right, size: 16),
],