fav order

Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
bggRGjQaUbCoE
2025-07-21 17:45:07 +08:00
parent 042a7df7f3
commit 8a62f5bbee
7 changed files with 74 additions and 9 deletions

View File

@@ -12,6 +12,8 @@ abstract class CommonSearchPageState<S extends CommonSearchPage, R, T>
extends State<S> {
CommonSearchController<R, T> get controller;
List<Widget>? extraActions;
@override
Widget build(BuildContext context) {
return Scaffold(
@@ -23,7 +25,8 @@ abstract class CommonSearchPageState<S extends CommonSearchPage, R, T>
onPressed: controller.onRefresh,
icon: const Icon(Icons.search_outlined, size: 22),
),
const SizedBox(width: 10)
...?extraActions,
const SizedBox(width: 10),
],
title: TextField(
autofocus: true,