Add a refresh button to network favorites page.

This commit is contained in:
2025-03-09 16:38:39 +08:00
parent 68b214e295
commit ca8f09807b
2 changed files with 15 additions and 2 deletions

View File

@@ -110,6 +110,15 @@ class _NormalFavoritePageState extends State<_NormalFavoritePage> {
child: Text(widget.data.title),
),
actions: [
Tooltip(
message: "Refresh".tl,
child: IconButton(
icon: const Icon(Icons.refresh),
onPressed: () {
comicListKey.currentState!.refresh();
},
),
),
MenuButton(entries: [
MenuEntry(
icon: Icons.sync,