feat(ui): About in drawer; higher-contrast app icon & splash

Add an "About" entry to the navigation drawer (below Settings) so the
About screen is reachable without opening Settings first.

Recolour the launcher icon and native splash to a white sprout on brand
green (#2F7D34) — the previous dark-green-on-light-green had almost no
contrast. Regenerate Android, iOS and web icons and the light/dark splash.
This commit is contained in:
vjrj 2026-07-09 12:18:37 +02:00
parent 9558115c1e
commit c9e93f7e27
65 changed files with 36 additions and 10 deletions

View file

@ -66,30 +66,30 @@ dev_dependencies:
flutter_launcher_icons: ^0.14.4
flutter_native_splash: ^2.4.7
# App launcher icon (green sprout on the light-green canvas). Regenerate with:
# dart run flutter_launcher_icons
# App launcher icon: a white sprout on brand green (#2F7D34) for strong
# contrast. Regenerate with: dart run flutter_launcher_icons
flutter_launcher_icons:
image_path: assets/icon.png
android: true
ios: true
remove_alpha_ios: true
adaptive_icon_background: "#E7F1E0"
adaptive_icon_background: "#2F7D34"
adaptive_icon_foreground: assets/icon_foreground.png
web:
generate: true
image_path: assets/icon.png
background_color: "#E7F1E0"
background_color: "#2F7D34"
theme_color: "#2F7D34"
# Native splash: the sprout on the canvas colour, light & dark. Regenerate with:
# dart run flutter_native_splash:create
# Native splash: white sprout on brand green, a darker green in dark mode.
# Regenerate with: dart run flutter_native_splash:create
flutter_native_splash:
color: "#E7F1E0"
color: "#2F7D34"
color_dark: "#22521E"
image: assets/splash_logo.png
android_12:
image: assets/splash_logo.png
color: "#E7F1E0"
color: "#2F7D34"
color_dark: "#22521E"
flutter: