fix: use ValueKey<String> for reorderable grid and add status bar padding

flutter_reorderable_grid_view requires String keys, not int. Also
adds safe area top padding so the room grid doesn't overlap the
system status bar.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-15 22:59:24 +01:00
parent 98f42ccb9c
commit 76cd98300d
4 changed files with 15 additions and 14 deletions

View File

@@ -166,16 +166,16 @@ class AppLocalizationsDe extends AppLocalizations {
String get taskEmptyAction => 'Aufgabe erstellen';
@override
String get templatePickerTitle => 'Aufgaben aus Vorlagen hinzuf\u00fcgen?';
String get templatePickerTitle => 'Aufgaben aus Vorlagen hinzufügen?';
@override
String get templatePickerSkip => '\u00dcberspringen';
String get templatePickerSkip => 'Überspringen';
@override
String get templatePickerAdd => 'Hinzuf\u00fcgen';
String get templatePickerAdd => 'Hinzufügen';
@override
String templatePickerSelected(int count) {
return '$count ausgew\u00e4hlt';
return '$count ausgewählt';
}
}