mirror of
https://gitlab.com/famedly/fluffychat.git
synced 2024-11-08 04:59:29 +01:00
25 lines
700 B
Dart
25 lines
700 B
Dart
|
import 'package:famedlysdk/famedlysdk.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 Scaffold(body: Center(child: CircularProgressIndicator()));
|
||
|
}
|
||
|
return page;
|
||
|
});
|
||
|
}
|
||
|
return page;
|
||
|
}
|
||
|
}
|