product and category loader

This commit is contained in:
efrilm
2025-10-25 00:13:43 +07:00
parent 7bcf54c555
commit 754048b565
16 changed files with 712 additions and 6 deletions
+2 -2
View File
@@ -56,7 +56,7 @@ class HomeRoute extends _i10.PageRouteInfo<void> {
static _i10.PageInfo page = _i10.PageInfo(
name,
builder: (data) {
return const _i2.HomePage();
return _i10.WrappedRoute(child: const _i2.HomePage());
},
);
}
@@ -152,7 +152,7 @@ class SyncRoute extends _i10.PageRouteInfo<void> {
static _i10.PageInfo page = _i10.PageInfo(
name,
builder: (data) {
return const _i8.SyncPage();
return _i10.WrappedRoute(child: const _i8.SyncPage());
},
);
}