new: FIFO list impl

This commit is contained in:
lollipopkit
2024-04-07 22:55:00 +08:00
parent f126a59ff2
commit 3c7bb77f3e
7 changed files with 69 additions and 30 deletions

View File

@@ -409,7 +409,6 @@ class _ServerEditPageState extends State<ServerEditPage> {
Widget _buildFAB() {
return FloatingActionButton(
heroTag: 'server',
onPressed: _onSave,
child: const Icon(Icons.save),
);

View File

@@ -69,7 +69,6 @@ class _ServerPageState extends State<ServerPage>
floatingActionButton: FloatingActionButton(
onPressed: () => AppRoute.serverEdit().go(context),
tooltip: l10n.addAServer,
heroTag: 'server',
child: const Icon(Icons.add),
),
);

View File

@@ -48,7 +48,6 @@ class _SSHTabPageState extends State<SSHTabPage>
return FloatingActionButton(
onPressed: () => AppRoute.serverEdit().go(context),
tooltip: l10n.addAServer,
heroTag: 'server',
child: const Icon(Icons.add),
);
},