mirror of
https://gitlab.com/famedly/fluffychat.git
synced 2024-11-01 01:29:28 +01:00
34 lines
1.0 KiB
Dart
34 lines
1.0 KiB
Dart
import 'package:fluffychat/utils/sentry_controller.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:flutter_gen/gen_l10n/l10n.dart';
|
|
|
|
class SentrySwitchListTile extends StatefulWidget {
|
|
final String label;
|
|
|
|
const SentrySwitchListTile({Key key, this.label}) : super(key: key);
|
|
|
|
@override
|
|
_SentrySwitchListTileState createState() => _SentrySwitchListTileState();
|
|
}
|
|
|
|
class _SentrySwitchListTileState extends State<SentrySwitchListTile> {
|
|
bool _enabled = false;
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return FutureBuilder<bool>(
|
|
future: SentryController.getSentryStatus(),
|
|
builder: (context, snapshot) {
|
|
_enabled = snapshot.data ?? false;
|
|
return SwitchListTile(
|
|
title: Text(widget.label ?? L10n.of(context).sendBugReports),
|
|
value: _enabled,
|
|
onChanged: (b) =>
|
|
SentryController.toggleSentryAction(context, b).then(
|
|
(_) => setState(() => null),
|
|
),
|
|
);
|
|
});
|
|
}
|
|
}
|