[core] Update Flutter to Version 3.24.0 (#189)

Update Flutter to Version 3.24.0 and replace the deprecated `background`
and `onBackground` colors with `surface` and `onSurface`. Within this
migration we also adjusted the `onSecondary` color, so that the apps
look as before the update.
This commit is contained in:
Rico Berger
2024-08-09 14:06:53 +02:00
committed by GitHub
parent 43a8ebe513
commit 96eccb5503
35 changed files with 186 additions and 161 deletions

View File

@@ -235,6 +235,8 @@ class _SetSettingsState extends State<SetSettings> {
),
ElevatedButton.icon(
style: ElevatedButton.styleFrom(
backgroundColor: Constants.secondary,
foregroundColor: Constants.onSecondary,
maximumSize: const Size.fromHeight(
Constants.elevatedButtonSize,
),
@@ -253,6 +255,8 @@ class _SetSettingsState extends State<SetSettings> {
),
ElevatedButton.icon(
style: ElevatedButton.styleFrom(
backgroundColor: Constants.secondary,
foregroundColor: Constants.onSecondary,
maximumSize: const Size.fromHeight(
Constants.elevatedButtonSize,
),