opt: const page (#1736)

This commit is contained in:
My-Responsitories
2025-11-12 07:33:28 +08:00
committed by GitHub
parent 9310732343
commit 8f3c9f029c
3 changed files with 4 additions and 4 deletions

View File

@@ -177,7 +177,7 @@ class _SharePanelState extends State<SharePanel> {
onTap: () async {
_focusNode.unfocus();
UserModel? userModel = await Navigator.of(context).push(
GetPageRoute(page: ContactPage.new),
GetPageRoute(page: () => const ContactPage()),
);
if (userModel != null) {
_userList

View File

@@ -528,7 +528,7 @@ class _DownloadPanelState extends State<DownloadPanel> {
_buildBottomBtn(
text: '查看缓存',
onTap: () => Navigator.of(context).push(
GetPageRoute(page: DownloadPage.new),
GetPageRoute(page: () => const DownloadPage()),
),
),
],