fix(mobile): recently added -> taken (#17780)

This commit is contained in:
Matthew Momjian 2025-04-23 07:38:25 -04:00 committed by GitHub
parent a774153f67
commit 699fdd0d1b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
9 changed files with 23 additions and 21 deletions

View file

@ -1407,20 +1407,20 @@ class PlacesCollectionRouteArgs {
}
/// generated route for
/// [RecentlyAddedPage]
class RecentlyAddedRoute extends PageRouteInfo<void> {
const RecentlyAddedRoute({List<PageRouteInfo>? children})
/// [RecentlyTakenPage]
class RecentlyTakenRoute extends PageRouteInfo<void> {
const RecentlyTakenRoute({List<PageRouteInfo>? children})
: super(
RecentlyAddedRoute.name,
RecentlyTakenRoute.name,
initialChildren: children,
);
static const String name = 'RecentlyAddedRoute';
static const String name = 'RecentlyTakenRoute';
static PageInfo page = PageInfo(
name,
builder: (data) {
return const RecentlyAddedPage();
return const RecentlyTakenPage();
},
);
}