🐛 Fix route bug

This commit is contained in:
2026-01-02 16:59:46 +08:00
parent 84f5677260
commit 8c1ad94555
64 changed files with 335 additions and 351 deletions

View File

@@ -10,7 +10,7 @@ part of 'edit_app.dart';
// ignore_for_file: type=lint, type=warning
@ProviderFor(customApp)
const customAppProvider = CustomAppFamily._();
final customAppProvider = CustomAppFamily._();
final class CustomAppProvider
extends
@@ -20,7 +20,7 @@ final class CustomAppProvider
FutureOr<CustomApp?>
>
with $FutureModifier<CustomApp?>, $FutureProvider<CustomApp?> {
const CustomAppProvider._({
CustomAppProvider._({
required CustomAppFamily super.from,
required (String, String, String) super.argument,
}) : super(
@@ -71,7 +71,7 @@ final class CustomAppFamily extends $Family
FutureOr<CustomApp?>,
(String, String, String)
> {
const CustomAppFamily._()
CustomAppFamily._()
: super(
retry: null,
name: r'customAppProvider',