feat: prompt user on host key verification (#943)

This commit is contained in:
lollipopkit🏳️‍⚧️
2025-10-20 09:31:20 +08:00
committed by GitHub
parent 8cbb48ed67
commit 5272324be6
38 changed files with 1076 additions and 219 deletions

View File

@@ -83,10 +83,10 @@ class _HomeTabsConfigPageState extends ConsumerState<HomeTabsConfigPage> {
onTap: isSelected && canRemove ? () => _removeTab(tab) : null,
);
return Card(
return Padding(
key: ValueKey(tab.name),
margin: const EdgeInsets.symmetric(horizontal: 16, vertical: 4),
child: isSelected ? ReorderableDragStartListener(index: index, child: child) : child,
padding: const EdgeInsets.symmetric(horizontal: 8, vertical: 1),
child: (isSelected ? ReorderableDragStartListener(index: index, child: child) : child).cardx,
);
}