mirror of
https://gitlab.com/famedly/fluffychat.git
synced 2024-11-01 01:29:28 +01:00
26 lines
720 B
Dart
26 lines
720 B
Dart
import 'package:fluffychat/pages/views/empty_page_view.dart';
|
|
import 'package:matrix/matrix.dart';
|
|
import 'package:flutter/material.dart';
|
|
|
|
import '../matrix.dart';
|
|
|
|
class WaitForInitPage extends StatelessWidget {
|
|
final Widget page;
|
|
const WaitForInitPage(this.page, {Key key}) : super(key: key);
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
if (Matrix.of(context).loginState == null) {
|
|
return StreamBuilder<LoginState>(
|
|
stream: Matrix.of(context).client.onLoginStateChanged.stream,
|
|
builder: (context, snapshot) {
|
|
if (!snapshot.hasData) {
|
|
return EmptyPage(loading: true);
|
|
}
|
|
return page;
|
|
});
|
|
}
|
|
return page;
|
|
}
|
|
}
|