fixed doc comments

This commit is contained in:
Nico
2025-06-18 15:58:01 +02:00
parent d1d5761b0a
commit 3686cfd018
9 changed files with 12 additions and 10 deletions

View File

@@ -205,7 +205,7 @@ class _ExcursionMainState extends State<ExcursionMain> {
}
/// Get all form field values as a map
/// @return Map<String, String> Map of field names to values
/// @return Map[String, String] Map of field names to values
Map<String, String> getFieldsText() {
Map<String, String> puff = {};
@@ -398,8 +398,9 @@ class _ExcursionMainState extends State<ExcursionMain> {
TextButton(
onPressed: () async {
await Geolocator.openAppSettings();
if (context.mounted)
if (context.mounted) {
Navigator.of(context).pop(true);
}
},
child: Text(
AppLocalizations.of(context)!.openSettings),