2021-01-17 08:05:34 +01:00
|
|
|
import 'package:adaptive_page_layout/adaptive_page_layout.dart';
|
2021-04-09 16:15:03 +02:00
|
|
|
import 'package:fluffychat/views/widgets/matrix.dart';
|
2021-01-16 12:46:38 +01:00
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
|
|
|
|
class LoadingView extends StatelessWidget {
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
2021-01-17 08:05:34 +01:00
|
|
|
if (Matrix.of(context).loginState != null) {
|
|
|
|
WidgetsBinding.instance.addPostFrameCallback((_) =>
|
|
|
|
AdaptivePageLayout.of(context).pushNamedAndRemoveAllOthers('/'));
|
|
|
|
}
|
2021-01-18 08:38:19 +01:00
|
|
|
return Scaffold(body: Center(child: CircularProgressIndicator()));
|
2021-01-16 12:46:38 +01:00
|
|
|
}
|
|
|
|
}
|