fluffychat/lib/views/auth_web_view.dart

47 lines
1.3 KiB
Dart
Raw Normal View History

2020-01-14 15:53:35 +01:00
import 'package:fluffychat/components/matrix.dart';
2020-02-17 14:07:57 +01:00
import 'package:flutter/foundation.dart';
2020-01-14 15:53:35 +01:00
import 'package:flutter/material.dart';
import 'package:flutter_gen/gen_l10n/l10n.dart';
2020-02-17 14:07:57 +01:00
import 'package:url_launcher/url_launcher.dart';
2020-01-14 15:53:35 +01:00
import 'package:webview_flutter/webview_flutter.dart';
class AuthWebView extends StatelessWidget {
final String authType;
final String session;
final Function onAuthDone;
const AuthWebView(this.authType, this.session, this.onAuthDone);
@override
Widget build(BuildContext context) {
2020-08-16 12:54:43 +02:00
final url = Matrix.of(context).client.homeserver.toString() +
2020-06-10 10:07:01 +02:00
'/_matrix/client/r0/auth/$authType/fallback/web?session=$session';
2020-02-17 14:07:57 +01:00
if (kIsWeb) launch(url);
2020-01-14 15:53:35 +01:00
return Scaffold(
appBar: AppBar(
2020-05-07 07:52:40 +02:00
title: Text(L10n.of(context).authentication),
2020-01-14 15:53:35 +01:00
leading: IconButton(
2020-02-16 08:35:35 +01:00
icon: Icon(Icons.close),
2020-01-14 15:53:35 +01:00
onPressed: () {
Navigator.of(context).pop();
2020-02-16 08:35:35 +01:00
onAuthDone();
2020-01-14 15:53:35 +01:00
},
),
),
2020-02-16 08:35:35 +01:00
body: Column(
children: <Widget>[
LinearProgressIndicator(),
Expanded(
2020-02-17 14:07:57 +01:00
child: kIsWeb
2020-12-06 10:31:35 +01:00
? Center(child: Icon(Icons.link_outlined))
2020-02-17 14:07:57 +01:00
: WebView(
initialUrl: url,
javascriptMode: JavascriptMode.unrestricted,
),
2020-02-16 08:35:35 +01:00
),
],
2020-01-14 15:53:35 +01:00
),
);
}
}