✨ Chat room layout
This commit is contained in:
@ -9,30 +9,32 @@
|
||||
// coverage:ignore-file
|
||||
|
||||
// ignore_for_file: no_leading_underscores_for_library_prefixes
|
||||
import 'package:auto_route/auto_route.dart' as _i12;
|
||||
import 'package:flutter/material.dart' as _i13;
|
||||
import 'package:island/models/post.dart' as _i14;
|
||||
import 'package:auto_route/auto_route.dart' as _i14;
|
||||
import 'package:flutter/material.dart' as _i15;
|
||||
import 'package:island/models/post.dart' as _i16;
|
||||
import 'package:island/screens/account.dart' as _i1;
|
||||
import 'package:island/screens/account/me.dart' as _i7;
|
||||
import 'package:island/screens/account/me/publishers.dart' as _i3;
|
||||
import 'package:island/screens/account/me/update.dart' as _i11;
|
||||
import 'package:island/screens/auth/create_account.dart' as _i2;
|
||||
import 'package:island/screens/auth/login.dart' as _i6;
|
||||
import 'package:island/screens/auth/tabs.dart' as _i10;
|
||||
import 'package:island/screens/explore.dart' as _i5;
|
||||
import 'package:island/screens/posts/compose.dart' as _i8;
|
||||
import 'package:island/screens/posts/detail.dart' as _i9;
|
||||
import 'package:island/screens/realm/realms.dart' as _i4;
|
||||
import 'package:island/screens/account/me.dart' as _i9;
|
||||
import 'package:island/screens/account/me/publishers.dart' as _i5;
|
||||
import 'package:island/screens/account/me/update.dart' as _i13;
|
||||
import 'package:island/screens/auth/create_account.dart' as _i4;
|
||||
import 'package:island/screens/auth/login.dart' as _i8;
|
||||
import 'package:island/screens/auth/tabs.dart' as _i12;
|
||||
import 'package:island/screens/chat/chat.dart' as _i2;
|
||||
import 'package:island/screens/chat/room.dart' as _i3;
|
||||
import 'package:island/screens/explore.dart' as _i7;
|
||||
import 'package:island/screens/posts/compose.dart' as _i10;
|
||||
import 'package:island/screens/posts/detail.dart' as _i11;
|
||||
import 'package:island/screens/realm/realms.dart' as _i6;
|
||||
|
||||
/// generated route for
|
||||
/// [_i1.AccountScreen]
|
||||
class AccountRoute extends _i12.PageRouteInfo<void> {
|
||||
const AccountRoute({List<_i12.PageRouteInfo>? children})
|
||||
class AccountRoute extends _i14.PageRouteInfo<void> {
|
||||
const AccountRoute({List<_i14.PageRouteInfo>? children})
|
||||
: super(AccountRoute.name, initialChildren: children);
|
||||
|
||||
static const String name = 'AccountRoute';
|
||||
|
||||
static _i12.PageInfo page = _i12.PageInfo(
|
||||
static _i14.PageInfo page = _i14.PageInfo(
|
||||
name,
|
||||
builder: (data) {
|
||||
return const _i1.AccountScreen();
|
||||
@ -41,28 +43,123 @@ class AccountRoute extends _i12.PageRouteInfo<void> {
|
||||
}
|
||||
|
||||
/// generated route for
|
||||
/// [_i2.CreateAccountScreen]
|
||||
class CreateAccountRoute extends _i12.PageRouteInfo<void> {
|
||||
const CreateAccountRoute({List<_i12.PageRouteInfo>? children})
|
||||
: super(CreateAccountRoute.name, initialChildren: children);
|
||||
/// [_i2.ChatListScreen]
|
||||
class ChatListRoute extends _i14.PageRouteInfo<void> {
|
||||
const ChatListRoute({List<_i14.PageRouteInfo>? children})
|
||||
: super(ChatListRoute.name, initialChildren: children);
|
||||
|
||||
static const String name = 'CreateAccountRoute';
|
||||
static const String name = 'ChatListRoute';
|
||||
|
||||
static _i12.PageInfo page = _i12.PageInfo(
|
||||
static _i14.PageInfo page = _i14.PageInfo(
|
||||
name,
|
||||
builder: (data) {
|
||||
return const _i2.CreateAccountScreen();
|
||||
return const _i2.ChatListScreen();
|
||||
},
|
||||
);
|
||||
}
|
||||
|
||||
/// generated route for
|
||||
/// [_i3.EditPublisherScreen]
|
||||
class EditPublisherRoute extends _i12.PageRouteInfo<EditPublisherRouteArgs> {
|
||||
/// [_i3.ChatRoomScreen]
|
||||
class ChatRoomRoute extends _i14.PageRouteInfo<ChatRoomRouteArgs> {
|
||||
ChatRoomRoute({
|
||||
_i15.Key? key,
|
||||
required int id,
|
||||
List<_i14.PageRouteInfo>? children,
|
||||
}) : super(
|
||||
ChatRoomRoute.name,
|
||||
args: ChatRoomRouteArgs(key: key, id: id),
|
||||
rawPathParams: {'id': id},
|
||||
initialChildren: children,
|
||||
);
|
||||
|
||||
static const String name = 'ChatRoomRoute';
|
||||
|
||||
static _i14.PageInfo page = _i14.PageInfo(
|
||||
name,
|
||||
builder: (data) {
|
||||
final pathParams = data.inheritedPathParams;
|
||||
final args = data.argsAs<ChatRoomRouteArgs>(
|
||||
orElse: () => ChatRoomRouteArgs(id: pathParams.getInt('id')),
|
||||
);
|
||||
return _i3.ChatRoomScreen(key: args.key, id: args.id);
|
||||
},
|
||||
);
|
||||
}
|
||||
|
||||
class ChatRoomRouteArgs {
|
||||
const ChatRoomRouteArgs({this.key, required this.id});
|
||||
|
||||
final _i15.Key? key;
|
||||
|
||||
final int id;
|
||||
|
||||
@override
|
||||
String toString() {
|
||||
return 'ChatRoomRouteArgs{key: $key, id: $id}';
|
||||
}
|
||||
}
|
||||
|
||||
/// generated route for
|
||||
/// [_i4.CreateAccountScreen]
|
||||
class CreateAccountRoute extends _i14.PageRouteInfo<void> {
|
||||
const CreateAccountRoute({List<_i14.PageRouteInfo>? children})
|
||||
: super(CreateAccountRoute.name, initialChildren: children);
|
||||
|
||||
static const String name = 'CreateAccountRoute';
|
||||
|
||||
static _i14.PageInfo page = _i14.PageInfo(
|
||||
name,
|
||||
builder: (data) {
|
||||
return const _i4.CreateAccountScreen();
|
||||
},
|
||||
);
|
||||
}
|
||||
|
||||
/// generated route for
|
||||
/// [_i2.EditChatScreen]
|
||||
class EditChatRoute extends _i14.PageRouteInfo<EditChatRouteArgs> {
|
||||
EditChatRoute({_i15.Key? key, int? id, List<_i14.PageRouteInfo>? children})
|
||||
: super(
|
||||
EditChatRoute.name,
|
||||
args: EditChatRouteArgs(key: key, id: id),
|
||||
rawPathParams: {'id': id},
|
||||
initialChildren: children,
|
||||
);
|
||||
|
||||
static const String name = 'EditChatRoute';
|
||||
|
||||
static _i14.PageInfo page = _i14.PageInfo(
|
||||
name,
|
||||
builder: (data) {
|
||||
final pathParams = data.inheritedPathParams;
|
||||
final args = data.argsAs<EditChatRouteArgs>(
|
||||
orElse: () => EditChatRouteArgs(id: pathParams.optInt('id')),
|
||||
);
|
||||
return _i2.EditChatScreen(key: args.key, id: args.id);
|
||||
},
|
||||
);
|
||||
}
|
||||
|
||||
class EditChatRouteArgs {
|
||||
const EditChatRouteArgs({this.key, this.id});
|
||||
|
||||
final _i15.Key? key;
|
||||
|
||||
final int? id;
|
||||
|
||||
@override
|
||||
String toString() {
|
||||
return 'EditChatRouteArgs{key: $key, id: $id}';
|
||||
}
|
||||
}
|
||||
|
||||
/// generated route for
|
||||
/// [_i5.EditPublisherScreen]
|
||||
class EditPublisherRoute extends _i14.PageRouteInfo<EditPublisherRouteArgs> {
|
||||
EditPublisherRoute({
|
||||
_i13.Key? key,
|
||||
_i15.Key? key,
|
||||
String? name,
|
||||
List<_i12.PageRouteInfo>? children,
|
||||
List<_i14.PageRouteInfo>? children,
|
||||
}) : super(
|
||||
EditPublisherRoute.name,
|
||||
args: EditPublisherRouteArgs(key: key, name: name),
|
||||
@ -72,14 +169,14 @@ class EditPublisherRoute extends _i12.PageRouteInfo<EditPublisherRouteArgs> {
|
||||
|
||||
static const String name = 'EditPublisherRoute';
|
||||
|
||||
static _i12.PageInfo page = _i12.PageInfo(
|
||||
static _i14.PageInfo page = _i14.PageInfo(
|
||||
name,
|
||||
builder: (data) {
|
||||
final pathParams = data.inheritedPathParams;
|
||||
final args = data.argsAs<EditPublisherRouteArgs>(
|
||||
orElse: () => EditPublisherRouteArgs(name: pathParams.optString('id')),
|
||||
);
|
||||
return _i3.EditPublisherScreen(key: args.key, name: args.name);
|
||||
return _i5.EditPublisherScreen(key: args.key, name: args.name);
|
||||
},
|
||||
);
|
||||
}
|
||||
@ -87,7 +184,7 @@ class EditPublisherRoute extends _i12.PageRouteInfo<EditPublisherRouteArgs> {
|
||||
class EditPublisherRouteArgs {
|
||||
const EditPublisherRouteArgs({this.key, this.name});
|
||||
|
||||
final _i13.Key? key;
|
||||
final _i15.Key? key;
|
||||
|
||||
final String? name;
|
||||
|
||||
@ -98,12 +195,12 @@ class EditPublisherRouteArgs {
|
||||
}
|
||||
|
||||
/// generated route for
|
||||
/// [_i4.EditRealmScreen]
|
||||
class EditRealmRoute extends _i12.PageRouteInfo<EditRealmRouteArgs> {
|
||||
/// [_i6.EditRealmScreen]
|
||||
class EditRealmRoute extends _i14.PageRouteInfo<EditRealmRouteArgs> {
|
||||
EditRealmRoute({
|
||||
_i13.Key? key,
|
||||
_i15.Key? key,
|
||||
String? slug,
|
||||
List<_i12.PageRouteInfo>? children,
|
||||
List<_i14.PageRouteInfo>? children,
|
||||
}) : super(
|
||||
EditRealmRoute.name,
|
||||
args: EditRealmRouteArgs(key: key, slug: slug),
|
||||
@ -113,14 +210,14 @@ class EditRealmRoute extends _i12.PageRouteInfo<EditRealmRouteArgs> {
|
||||
|
||||
static const String name = 'EditRealmRoute';
|
||||
|
||||
static _i12.PageInfo page = _i12.PageInfo(
|
||||
static _i14.PageInfo page = _i14.PageInfo(
|
||||
name,
|
||||
builder: (data) {
|
||||
final pathParams = data.inheritedPathParams;
|
||||
final args = data.argsAs<EditRealmRouteArgs>(
|
||||
orElse: () => EditRealmRouteArgs(slug: pathParams.optString('slug')),
|
||||
);
|
||||
return _i4.EditRealmScreen(key: args.key, slug: args.slug);
|
||||
return _i6.EditRealmScreen(key: args.key, slug: args.slug);
|
||||
},
|
||||
);
|
||||
}
|
||||
@ -128,7 +225,7 @@ class EditRealmRoute extends _i12.PageRouteInfo<EditRealmRouteArgs> {
|
||||
class EditRealmRouteArgs {
|
||||
const EditRealmRouteArgs({this.key, this.slug});
|
||||
|
||||
final _i13.Key? key;
|
||||
final _i15.Key? key;
|
||||
|
||||
final String? slug;
|
||||
|
||||
@ -139,108 +236,124 @@ class EditRealmRouteArgs {
|
||||
}
|
||||
|
||||
/// generated route for
|
||||
/// [_i5.ExploreScreen]
|
||||
class ExploreRoute extends _i12.PageRouteInfo<void> {
|
||||
const ExploreRoute({List<_i12.PageRouteInfo>? children})
|
||||
/// [_i7.ExploreScreen]
|
||||
class ExploreRoute extends _i14.PageRouteInfo<void> {
|
||||
const ExploreRoute({List<_i14.PageRouteInfo>? children})
|
||||
: super(ExploreRoute.name, initialChildren: children);
|
||||
|
||||
static const String name = 'ExploreRoute';
|
||||
|
||||
static _i12.PageInfo page = _i12.PageInfo(
|
||||
static _i14.PageInfo page = _i14.PageInfo(
|
||||
name,
|
||||
builder: (data) {
|
||||
return const _i5.ExploreScreen();
|
||||
return const _i7.ExploreScreen();
|
||||
},
|
||||
);
|
||||
}
|
||||
|
||||
/// generated route for
|
||||
/// [_i6.LoginScreen]
|
||||
class LoginRoute extends _i12.PageRouteInfo<void> {
|
||||
const LoginRoute({List<_i12.PageRouteInfo>? children})
|
||||
/// [_i8.LoginScreen]
|
||||
class LoginRoute extends _i14.PageRouteInfo<void> {
|
||||
const LoginRoute({List<_i14.PageRouteInfo>? children})
|
||||
: super(LoginRoute.name, initialChildren: children);
|
||||
|
||||
static const String name = 'LoginRoute';
|
||||
|
||||
static _i12.PageInfo page = _i12.PageInfo(
|
||||
static _i14.PageInfo page = _i14.PageInfo(
|
||||
name,
|
||||
builder: (data) {
|
||||
return const _i6.LoginScreen();
|
||||
return const _i8.LoginScreen();
|
||||
},
|
||||
);
|
||||
}
|
||||
|
||||
/// generated route for
|
||||
/// [_i3.ManagedPublisherScreen]
|
||||
class ManagedPublisherRoute extends _i12.PageRouteInfo<void> {
|
||||
const ManagedPublisherRoute({List<_i12.PageRouteInfo>? children})
|
||||
/// [_i5.ManagedPublisherScreen]
|
||||
class ManagedPublisherRoute extends _i14.PageRouteInfo<void> {
|
||||
const ManagedPublisherRoute({List<_i14.PageRouteInfo>? children})
|
||||
: super(ManagedPublisherRoute.name, initialChildren: children);
|
||||
|
||||
static const String name = 'ManagedPublisherRoute';
|
||||
|
||||
static _i12.PageInfo page = _i12.PageInfo(
|
||||
static _i14.PageInfo page = _i14.PageInfo(
|
||||
name,
|
||||
builder: (data) {
|
||||
return const _i3.ManagedPublisherScreen();
|
||||
return const _i5.ManagedPublisherScreen();
|
||||
},
|
||||
);
|
||||
}
|
||||
|
||||
/// generated route for
|
||||
/// [_i7.MyselfProfileScreen]
|
||||
class MyselfProfileRoute extends _i12.PageRouteInfo<void> {
|
||||
const MyselfProfileRoute({List<_i12.PageRouteInfo>? children})
|
||||
/// [_i9.MyselfProfileScreen]
|
||||
class MyselfProfileRoute extends _i14.PageRouteInfo<void> {
|
||||
const MyselfProfileRoute({List<_i14.PageRouteInfo>? children})
|
||||
: super(MyselfProfileRoute.name, initialChildren: children);
|
||||
|
||||
static const String name = 'MyselfProfileRoute';
|
||||
|
||||
static _i12.PageInfo page = _i12.PageInfo(
|
||||
static _i14.PageInfo page = _i14.PageInfo(
|
||||
name,
|
||||
builder: (data) {
|
||||
return const _i7.MyselfProfileScreen();
|
||||
return const _i9.MyselfProfileScreen();
|
||||
},
|
||||
);
|
||||
}
|
||||
|
||||
/// generated route for
|
||||
/// [_i3.NewPublisherScreen]
|
||||
class NewPublisherRoute extends _i12.PageRouteInfo<void> {
|
||||
const NewPublisherRoute({List<_i12.PageRouteInfo>? children})
|
||||
/// [_i2.NewChatScreen]
|
||||
class NewChatRoute extends _i14.PageRouteInfo<void> {
|
||||
const NewChatRoute({List<_i14.PageRouteInfo>? children})
|
||||
: super(NewChatRoute.name, initialChildren: children);
|
||||
|
||||
static const String name = 'NewChatRoute';
|
||||
|
||||
static _i14.PageInfo page = _i14.PageInfo(
|
||||
name,
|
||||
builder: (data) {
|
||||
return const _i2.NewChatScreen();
|
||||
},
|
||||
);
|
||||
}
|
||||
|
||||
/// generated route for
|
||||
/// [_i5.NewPublisherScreen]
|
||||
class NewPublisherRoute extends _i14.PageRouteInfo<void> {
|
||||
const NewPublisherRoute({List<_i14.PageRouteInfo>? children})
|
||||
: super(NewPublisherRoute.name, initialChildren: children);
|
||||
|
||||
static const String name = 'NewPublisherRoute';
|
||||
|
||||
static _i12.PageInfo page = _i12.PageInfo(
|
||||
static _i14.PageInfo page = _i14.PageInfo(
|
||||
name,
|
||||
builder: (data) {
|
||||
return const _i3.NewPublisherScreen();
|
||||
return const _i5.NewPublisherScreen();
|
||||
},
|
||||
);
|
||||
}
|
||||
|
||||
/// generated route for
|
||||
/// [_i4.NewRealmScreen]
|
||||
class NewRealmRoute extends _i12.PageRouteInfo<void> {
|
||||
const NewRealmRoute({List<_i12.PageRouteInfo>? children})
|
||||
/// [_i6.NewRealmScreen]
|
||||
class NewRealmRoute extends _i14.PageRouteInfo<void> {
|
||||
const NewRealmRoute({List<_i14.PageRouteInfo>? children})
|
||||
: super(NewRealmRoute.name, initialChildren: children);
|
||||
|
||||
static const String name = 'NewRealmRoute';
|
||||
|
||||
static _i12.PageInfo page = _i12.PageInfo(
|
||||
static _i14.PageInfo page = _i14.PageInfo(
|
||||
name,
|
||||
builder: (data) {
|
||||
return const _i4.NewRealmScreen();
|
||||
return const _i6.NewRealmScreen();
|
||||
},
|
||||
);
|
||||
}
|
||||
|
||||
/// generated route for
|
||||
/// [_i8.PostComposeScreen]
|
||||
class PostComposeRoute extends _i12.PageRouteInfo<PostComposeRouteArgs> {
|
||||
/// [_i10.PostComposeScreen]
|
||||
class PostComposeRoute extends _i14.PageRouteInfo<PostComposeRouteArgs> {
|
||||
PostComposeRoute({
|
||||
_i13.Key? key,
|
||||
_i14.SnPost? originalPost,
|
||||
List<_i12.PageRouteInfo>? children,
|
||||
_i15.Key? key,
|
||||
_i16.SnPost? originalPost,
|
||||
List<_i14.PageRouteInfo>? children,
|
||||
}) : super(
|
||||
PostComposeRoute.name,
|
||||
args: PostComposeRouteArgs(key: key, originalPost: originalPost),
|
||||
@ -249,13 +362,13 @@ class PostComposeRoute extends _i12.PageRouteInfo<PostComposeRouteArgs> {
|
||||
|
||||
static const String name = 'PostComposeRoute';
|
||||
|
||||
static _i12.PageInfo page = _i12.PageInfo(
|
||||
static _i14.PageInfo page = _i14.PageInfo(
|
||||
name,
|
||||
builder: (data) {
|
||||
final args = data.argsAs<PostComposeRouteArgs>(
|
||||
orElse: () => const PostComposeRouteArgs(),
|
||||
);
|
||||
return _i8.PostComposeScreen(
|
||||
return _i10.PostComposeScreen(
|
||||
key: args.key,
|
||||
originalPost: args.originalPost,
|
||||
);
|
||||
@ -266,9 +379,9 @@ class PostComposeRoute extends _i12.PageRouteInfo<PostComposeRouteArgs> {
|
||||
class PostComposeRouteArgs {
|
||||
const PostComposeRouteArgs({this.key, this.originalPost});
|
||||
|
||||
final _i13.Key? key;
|
||||
final _i15.Key? key;
|
||||
|
||||
final _i14.SnPost? originalPost;
|
||||
final _i16.SnPost? originalPost;
|
||||
|
||||
@override
|
||||
String toString() {
|
||||
@ -277,12 +390,12 @@ class PostComposeRouteArgs {
|
||||
}
|
||||
|
||||
/// generated route for
|
||||
/// [_i9.PostDetailScreen]
|
||||
class PostDetailRoute extends _i12.PageRouteInfo<PostDetailRouteArgs> {
|
||||
/// [_i11.PostDetailScreen]
|
||||
class PostDetailRoute extends _i14.PageRouteInfo<PostDetailRouteArgs> {
|
||||
PostDetailRoute({
|
||||
_i13.Key? key,
|
||||
_i15.Key? key,
|
||||
required int id,
|
||||
List<_i12.PageRouteInfo>? children,
|
||||
List<_i14.PageRouteInfo>? children,
|
||||
}) : super(
|
||||
PostDetailRoute.name,
|
||||
args: PostDetailRouteArgs(key: key, id: id),
|
||||
@ -292,14 +405,14 @@ class PostDetailRoute extends _i12.PageRouteInfo<PostDetailRouteArgs> {
|
||||
|
||||
static const String name = 'PostDetailRoute';
|
||||
|
||||
static _i12.PageInfo page = _i12.PageInfo(
|
||||
static _i14.PageInfo page = _i14.PageInfo(
|
||||
name,
|
||||
builder: (data) {
|
||||
final pathParams = data.inheritedPathParams;
|
||||
final args = data.argsAs<PostDetailRouteArgs>(
|
||||
orElse: () => PostDetailRouteArgs(id: pathParams.getInt('id')),
|
||||
);
|
||||
return _i9.PostDetailScreen(key: args.key, id: args.id);
|
||||
return _i11.PostDetailScreen(key: args.key, id: args.id);
|
||||
},
|
||||
);
|
||||
}
|
||||
@ -307,7 +420,7 @@ class PostDetailRoute extends _i12.PageRouteInfo<PostDetailRouteArgs> {
|
||||
class PostDetailRouteArgs {
|
||||
const PostDetailRouteArgs({this.key, required this.id});
|
||||
|
||||
final _i13.Key? key;
|
||||
final _i15.Key? key;
|
||||
|
||||
final int id;
|
||||
|
||||
@ -318,12 +431,12 @@ class PostDetailRouteArgs {
|
||||
}
|
||||
|
||||
/// generated route for
|
||||
/// [_i8.PostEditScreen]
|
||||
class PostEditRoute extends _i12.PageRouteInfo<PostEditRouteArgs> {
|
||||
/// [_i10.PostEditScreen]
|
||||
class PostEditRoute extends _i14.PageRouteInfo<PostEditRouteArgs> {
|
||||
PostEditRoute({
|
||||
_i13.Key? key,
|
||||
_i15.Key? key,
|
||||
required int id,
|
||||
List<_i12.PageRouteInfo>? children,
|
||||
List<_i14.PageRouteInfo>? children,
|
||||
}) : super(
|
||||
PostEditRoute.name,
|
||||
args: PostEditRouteArgs(key: key, id: id),
|
||||
@ -333,14 +446,14 @@ class PostEditRoute extends _i12.PageRouteInfo<PostEditRouteArgs> {
|
||||
|
||||
static const String name = 'PostEditRoute';
|
||||
|
||||
static _i12.PageInfo page = _i12.PageInfo(
|
||||
static _i14.PageInfo page = _i14.PageInfo(
|
||||
name,
|
||||
builder: (data) {
|
||||
final pathParams = data.inheritedPathParams;
|
||||
final args = data.argsAs<PostEditRouteArgs>(
|
||||
orElse: () => PostEditRouteArgs(id: pathParams.getInt('id')),
|
||||
);
|
||||
return _i8.PostEditScreen(key: args.key, id: args.id);
|
||||
return _i10.PostEditScreen(key: args.key, id: args.id);
|
||||
},
|
||||
);
|
||||
}
|
||||
@ -348,7 +461,7 @@ class PostEditRoute extends _i12.PageRouteInfo<PostEditRouteArgs> {
|
||||
class PostEditRouteArgs {
|
||||
const PostEditRouteArgs({this.key, required this.id});
|
||||
|
||||
final _i13.Key? key;
|
||||
final _i15.Key? key;
|
||||
|
||||
final int id;
|
||||
|
||||
@ -359,49 +472,49 @@ class PostEditRouteArgs {
|
||||
}
|
||||
|
||||
/// generated route for
|
||||
/// [_i4.RealmListScreen]
|
||||
class RealmListRoute extends _i12.PageRouteInfo<void> {
|
||||
const RealmListRoute({List<_i12.PageRouteInfo>? children})
|
||||
/// [_i6.RealmListScreen]
|
||||
class RealmListRoute extends _i14.PageRouteInfo<void> {
|
||||
const RealmListRoute({List<_i14.PageRouteInfo>? children})
|
||||
: super(RealmListRoute.name, initialChildren: children);
|
||||
|
||||
static const String name = 'RealmListRoute';
|
||||
|
||||
static _i12.PageInfo page = _i12.PageInfo(
|
||||
static _i14.PageInfo page = _i14.PageInfo(
|
||||
name,
|
||||
builder: (data) {
|
||||
return const _i4.RealmListScreen();
|
||||
return const _i6.RealmListScreen();
|
||||
},
|
||||
);
|
||||
}
|
||||
|
||||
/// generated route for
|
||||
/// [_i10.TabsScreen]
|
||||
class TabsRoute extends _i12.PageRouteInfo<void> {
|
||||
const TabsRoute({List<_i12.PageRouteInfo>? children})
|
||||
/// [_i12.TabsScreen]
|
||||
class TabsRoute extends _i14.PageRouteInfo<void> {
|
||||
const TabsRoute({List<_i14.PageRouteInfo>? children})
|
||||
: super(TabsRoute.name, initialChildren: children);
|
||||
|
||||
static const String name = 'TabsRoute';
|
||||
|
||||
static _i12.PageInfo page = _i12.PageInfo(
|
||||
static _i14.PageInfo page = _i14.PageInfo(
|
||||
name,
|
||||
builder: (data) {
|
||||
return const _i10.TabsScreen();
|
||||
return const _i12.TabsScreen();
|
||||
},
|
||||
);
|
||||
}
|
||||
|
||||
/// generated route for
|
||||
/// [_i11.UpdateProfileScreen]
|
||||
class UpdateProfileRoute extends _i12.PageRouteInfo<void> {
|
||||
const UpdateProfileRoute({List<_i12.PageRouteInfo>? children})
|
||||
/// [_i13.UpdateProfileScreen]
|
||||
class UpdateProfileRoute extends _i14.PageRouteInfo<void> {
|
||||
const UpdateProfileRoute({List<_i14.PageRouteInfo>? children})
|
||||
: super(UpdateProfileRoute.name, initialChildren: children);
|
||||
|
||||
static const String name = 'UpdateProfileRoute';
|
||||
|
||||
static _i12.PageInfo page = _i12.PageInfo(
|
||||
static _i14.PageInfo page = _i14.PageInfo(
|
||||
name,
|
||||
builder: (data) {
|
||||
return const _i11.UpdateProfileScreen();
|
||||
return const _i13.UpdateProfileScreen();
|
||||
},
|
||||
);
|
||||
}
|
||||
|
Reference in New Issue
Block a user