mirror of
https://gitlab.com/famedly/fluffychat.git
synced 2024-11-05 03:29:30 +01:00
23 lines
705 B
Dart
23 lines
705 B
Dart
import 'package:fluffychat/pages/views/empty_page_view.dart';
|
|
import 'package:matrix/matrix.dart';
|
|
import 'package:vrouter/vrouter.dart';
|
|
import 'package:fluffychat/widgets/matrix.dart';
|
|
import 'package:flutter/material.dart';
|
|
|
|
class LoadingView extends StatelessWidget {
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
if (Matrix.of(context).loginState != null) {
|
|
WidgetsBinding.instance.addPostFrameCallback(
|
|
(_) => context.vRouter.push(
|
|
Matrix.of(context).loginState == LoginState.logged
|
|
? '/rooms'
|
|
: '/home',
|
|
queryParameters: VRouter.of(context).queryParameters,
|
|
),
|
|
);
|
|
}
|
|
return EmptyPage(loading: true);
|
|
}
|
|
}
|