⚗️ Testing desktop layout

This commit is contained in:
2025-05-18 23:50:50 +08:00
parent ad41de3674
commit 911439f3af
7 changed files with 342 additions and 168 deletions

View File

@ -209,6 +209,22 @@ class ChatRoomRouteArgs {
}
}
/// generated route for
/// [_i5.ChatShellScreen]
class ChatShellRoute extends _i25.PageRouteInfo<void> {
const ChatShellRoute({List<_i25.PageRouteInfo>? children})
: super(ChatShellRoute.name, initialChildren: children);
static const String name = 'ChatShellRoute';
static _i25.PageInfo page = _i25.PageInfo(
name,
builder: (data) {
return const _i5.ChatShellScreen();
},
);
}
/// generated route for
/// [_i7.CreateAccountScreen]
class CreateAccountRoute extends _i25.PageRouteInfo<void> {