warm_alarm 0.1.2
warm_alarm: ^0.1.2 copied to clipboard
An independent Flutter alarm plugin extracted from WarmWake's core alarm functionality.
import 'dart:async';
import 'package:flutter/material.dart';
import 'package:warm_alarm/warm_alarm.dart';
void main() {
WidgetsFlutterBinding.ensureInitialized();
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
return const MaterialApp(home: HomePage());
}
}
class HomePage extends StatefulWidget {
const HomePage({super.key});
@override
State<HomePage> createState() => _HomePageState();
}
class _HomePageState extends State<HomePage> with WidgetsBindingObserver {
WarmAlarmReadiness? _readiness;
String? _exactScheduling;
String? _remediationStatus;
int? _lastScheduledAlarmId;
String? _scheduleWarning;
final List<String> _events = <String>[];
StreamSubscription<WarmAlarmEvent>? _eventsSubscription;
@override
void initState() {
super.initState();
WidgetsBinding.instance.addObserver(this);
_eventsSubscription = WarmAlarm.events.listen((event) {
if (!mounted) return;
setState(() {
_events.insert(0, '${event.runtimeType} #${event.alarmId}');
});
});
}
@override
void dispose() {
WidgetsBinding.instance.removeObserver(this);
unawaited(_eventsSubscription?.cancel());
super.dispose();
}
@override
void didChangeAppLifecycleState(AppLifecycleState state) {
// Opening a settings screen returns before the user changes anything, so the outcome only
// becomes visible once they come back.
if (state == AppLifecycleState.resumed && _readiness != null) {
unawaited(_refreshReadiness());
}
}
Future<void> _refreshReadiness() async {
try {
final readiness = await WarmAlarm.getReadiness();
if (!mounted) return;
setState(() => _readiness = readiness);
} on Exception catch (error) {
// Nothing awaits this on resume, so an uncaught failure would surface as a Flutter error
// rather than reaching the user the way the button actions do.
if (!mounted) return;
ScaffoldMessenger.of(context).showSnackBar(
SnackBar(
backgroundColor: Theme.of(context).primaryColor,
content: Text('$error'),
),
);
}
}
Future<void> _remediate(
Future<WarmAlarmRemediationResult> Function() action,
) async {
try {
final result = await action();
if (!mounted) return;
setState(() {
_remediationStatus = result.status.name;
_readiness = result.readiness;
});
} on Exception catch (error) {
if (!mounted) return;
ScaffoldMessenger.of(context).showSnackBar(
SnackBar(
backgroundColor: Theme.of(context).primaryColor,
content: Text('$error'),
),
);
}
}
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: const Text('WarmAlarm Example'),
),
// The button list outgrows a phone screen, so the body scrolls instead of overflowing.
body: Center(
child: SingleChildScrollView(
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: [
if (_readiness == null)
const SizedBox.shrink()
else
Column(
children: [
Text(
'Readiness: ${_readiness!.level.name}',
style: Theme.of(context).textTheme.headlineSmall,
),
const SizedBox(height: 8),
Text('Exact scheduling: $_exactScheduling'),
if (_remediationStatus != null) ...[
const SizedBox(height: 8),
Text('Remediation: $_remediationStatus'),
],
if (_lastScheduledAlarmId != null) ...[
const SizedBox(height: 8),
Text('Scheduled alarm id: $_lastScheduledAlarmId'),
],
if (_scheduleWarning != null) ...[
const SizedBox(height: 8),
Text('Schedule warning: $_scheduleWarning'),
],
],
),
const SizedBox(height: 16),
ElevatedButton(
onPressed: () async {
if (!context.mounted) return;
try {
final readiness = await WarmAlarm.getReadiness();
final capabilities = await WarmAlarm.getCapabilities();
setState(() {
_readiness = readiness;
_exactScheduling = capabilities.exactScheduling.name;
});
} on Exception catch (error) {
if (!context.mounted) return;
ScaffoldMessenger.of(context).showSnackBar(
SnackBar(
backgroundColor: Theme.of(context).primaryColor,
content: Text('$error'),
),
);
}
},
child: const Text('Inspect Alarm API'),
),
const SizedBox(height: 16),
ElevatedButton(
onPressed: () => _remediate(WarmAlarm.requestNotificationPermission),
child: const Text('Request notification permission'),
),
const SizedBox(height: 16),
ElevatedButton(
onPressed: () async {
// Readiness reasons are what the settings screens map to, so the
// first outstanding reason is the one worth sending the user to.
final reasons = _readiness?.reasons ?? const <WarmAlarmReadinessReason>[];
if (reasons.isEmpty) {
setState(() => _remediationStatus = 'no readiness reason to fix');
return;
}
await _remediate(
() => WarmAlarm.openReadinessSettings(reasons.first),
);
},
child: const Text('Open readiness settings'),
),
const SizedBox(height: 16),
ElevatedButton(
onPressed: () async {
if (!context.mounted) return;
try {
final schedule = WarmAlarmSchedule(
id: 42,
scheduledAt: DateTime.now().add(const Duration(minutes: 1)),
notification: const WarmAlarmNotification(
title: 'Warm Alarm',
body: 'Phase 2 wake-check proof',
stopActionTitle: 'Stop',
snoozeActionTitle: 'Snooze',
),
audio: const WarmAlarmAudio(),
snooze: const WarmAlarmSnooze(
duration: Duration(minutes: 5),
),
wakeCheck: const WarmAlarmWakeCheck(
checkDelay: Duration(minutes: 2),
retriggerDelay: Duration(minutes: 1),
),
);
final result = await WarmAlarm.scheduleAlarm(schedule);
setState(() {
_lastScheduledAlarmId = result.alarmId;
_scheduleWarning = result.warning?.message;
_readiness = result.readiness;
});
} on Exception catch (error) {
if (!context.mounted) return;
ScaffoldMessenger.of(context).showSnackBar(
SnackBar(
backgroundColor: Theme.of(context).primaryColor,
content: Text('$error'),
),
);
}
},
child: const Text('Schedule 1 minute alarm'),
),
const SizedBox(height: 24),
const Text('Events'),
const SizedBox(height: 8),
SizedBox(
height: 160,
child: ListView.builder(
shrinkWrap: true,
itemCount: _events.length,
itemBuilder: (context, index) => Text(_events[index]),
),
),
],
),
),
),
);
}
}