fluffychat/lib/components/sentry_switch_list_tile.dart

34 lines
1.0 KiB
Dart
Raw Normal View History

2021-01-17 15:33:31 +01:00
import 'package:fluffychat/utils/sentry_controller.dart';
import 'package:flutter/material.dart';
import 'package:flutter_gen/gen_l10n/l10n.dart';
class SentrySwitchListTile extends StatefulWidget {
2021-01-22 21:39:37 +01:00
final String label;
const SentrySwitchListTile({Key key, this.label}) : super(key: key);
2021-01-17 15:33:31 +01:00
@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(
2021-01-22 21:39:37 +01:00
title: Text(widget.label ?? L10n.of(context).sendBugReports),
2021-01-17 15:33:31 +01:00
value: _enabled,
onChanged: (b) =>
SentryController.toggleSentryAction(context, b).then(
(_) => setState(() => null),
),
);
});
}
}