Add notifications on missing functionality

This commit is contained in:
2025-06-07 20:38:12 +02:00
parent 038287ba4c
commit 9862fda9e5
3 changed files with 20 additions and 4 deletions

View File

@@ -220,7 +220,9 @@ class _SettingsRootPageState extends State<SettingsRootPage> {
leading: Icon(FontAwesomeIcons.solidWaveform),
title: Text('Notification Sound'),
value: Text(ncf.sound ?? '(Default)'),
onPressed: (context) => {/*TODO*/},
onPressed: (context) => {
Toaster.info("Not Implemented", "... will be implemented in a later version") // TODO
},
),
SettingsTile.switchTile(
initialValue: ncf.playSound,
@@ -238,7 +240,9 @@ class _SettingsRootPageState extends State<SettingsRootPage> {
leading: Icon(FontAwesomeIcons.solidStopwatch20),
title: Text('Auto Timeout'),
value: Text((ncf.timeoutAfter != null) ? "${ncf.timeoutAfter} sec" : "(None)"),
onPressed: (context) => {/*TODO*/},
onPressed: (context) => {
Toaster.info("Not Implemented", "... will be implemented in a later version") // TODO
},
),
];
}