mod: 历史记录搜索

This commit is contained in:
guozhigq
2023-11-03 23:39:21 +08:00
parent 6f34bacb64
commit fd43a8cb31
10 changed files with 332 additions and 13 deletions

View File

@ -36,6 +36,8 @@ import 'package:pilipala/pages/setting/index.dart';
import 'package:pilipala/pages/media/index.dart';
import 'package:pilipala/utils/storage.dart';
import '../pages/history_search/index.dart';
Box setting = GStrorage.setting;
bool iosTransition =
setting.get(SettingBoxKey.iosTransition, defaultValue: false);
@ -112,6 +114,9 @@ class Routes {
CustomGetPage(name: '/about', page: () => const AboutPage()),
//
CustomGetPage(name: '/htmlRender', page: () => const HtmlRenderPage()),
// 历史记录搜索
CustomGetPage(
name: '/historySearch', page: () => const HistorySearchPage()),
];
}