feat: Implement new space view
This commit is contained in:
parent
a6a18d34f6
commit
971d5b25fb
6 changed files with 156 additions and 9 deletions
|
|
@ -1,6 +1,7 @@
|
|||
import 'package:fluffychat/pages/archive.dart';
|
||||
import 'package:fluffychat/pages/homeserver_picker.dart';
|
||||
import 'package:fluffychat/pages/invitation_selection.dart';
|
||||
import 'package:fluffychat/pages/new_space.dart';
|
||||
import 'package:fluffychat/pages/settings_account.dart';
|
||||
import 'package:fluffychat/pages/settings_chat.dart';
|
||||
import 'package:fluffychat/pages/settings_emotes.dart';
|
||||
|
|
@ -81,6 +82,10 @@ class AppRoutes {
|
|||
path: '/newgroup',
|
||||
widget: NewGroup(),
|
||||
),
|
||||
VWidget(
|
||||
path: '/newspace',
|
||||
widget: NewSpace(),
|
||||
),
|
||||
],
|
||||
),
|
||||
];
|
||||
|
|
@ -108,6 +113,11 @@ class AppRoutes {
|
|||
widget: NewGroup(),
|
||||
buildTransition: _fadeTransition,
|
||||
),
|
||||
VWidget(
|
||||
path: '/newspace',
|
||||
widget: NewSpace(),
|
||||
buildTransition: _fadeTransition,
|
||||
),
|
||||
VNester(
|
||||
path: ':roomid',
|
||||
widgetBuilder: (child) => SideViewLayout(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue