mirror of
https://gitlab.com/famedly/fluffychat.git
synced 2024-11-02 18:19:30 +01:00
78 lines
2.7 KiB
Dart
78 lines
2.7 KiB
Dart
import 'dart:async';
|
|
import 'dart:io';
|
|
|
|
import 'package:famedlysdk/famedlysdk.dart';
|
|
import 'package:fluffychat/utils/sentry_controller.dart';
|
|
import 'package:fluffychat/views/homeserver_picker.dart';
|
|
import 'package:flushbar/flushbar_helper.dart';
|
|
import 'package:flutter/foundation.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:flutter/services.dart';
|
|
import 'package:flutter_gen/gen_l10n/l10n.dart';
|
|
import 'package:universal_html/prefer_universal/html.dart' as html;
|
|
|
|
import 'components/matrix.dart';
|
|
import 'components/theme_switcher.dart';
|
|
import 'views/chat_list.dart';
|
|
|
|
void main() {
|
|
SystemChrome.setSystemUIOverlayStyle(
|
|
SystemUiOverlayStyle(statusBarColor: Colors.transparent));
|
|
FlutterError.onError = (FlutterErrorDetails details) =>
|
|
Zone.current.handleUncaughtError(details.exception, details.stack);
|
|
runZonedGuarded(
|
|
() => runApp(App()),
|
|
SentryController.captureException,
|
|
);
|
|
}
|
|
|
|
class App extends StatelessWidget {
|
|
final String platform = kIsWeb ? 'Web' : Platform.operatingSystem;
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Matrix(
|
|
clientName: 'FluffyChat $platform',
|
|
child: Builder(
|
|
builder: (BuildContext context) => ThemeSwitcherWidget(
|
|
child: Builder(
|
|
builder: (BuildContext context) => MaterialApp(
|
|
title: 'FluffyChat',
|
|
theme: ThemeSwitcherWidget.of(context).themeData,
|
|
localizationsDelegates: L10n.localizationsDelegates,
|
|
supportedLocales: L10n.supportedLocales,
|
|
locale: kIsWeb
|
|
? Locale(html.window.navigator.language.split('-').first)
|
|
: null,
|
|
home: FutureBuilder<LoginState>(
|
|
future:
|
|
Matrix.of(context).client.onLoginStateChanged.stream.first,
|
|
builder: (context, snapshot) {
|
|
if (snapshot.hasError) {
|
|
WidgetsBinding.instance
|
|
.addPostFrameCallback((_) => FlushbarHelper.createError(
|
|
title: L10n.of(context).oopsSomethingWentWrong,
|
|
message: snapshot.error.toString(),
|
|
).show(context));
|
|
return HomeserverPicker();
|
|
}
|
|
if (!snapshot.hasData) {
|
|
return Scaffold(
|
|
body: Center(
|
|
child: CircularProgressIndicator(),
|
|
),
|
|
);
|
|
}
|
|
if (Matrix.of(context).client.isLogged()) {
|
|
return ChatListView();
|
|
}
|
|
return HomeserverPicker();
|
|
},
|
|
),
|
|
),
|
|
),
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|