-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Labels
Description
The app’s UI currently lacks dark mode support, which affects usability in low‑light environments (e.g., museums). Implementing dark mode will improve readability and user comfort, especially for evening visits.
Sample:
// Example: set dynamic background color
view.backgroundColor = UIColor { trait in
trait.userInterfaceStyle == .dark ? .black : .white
}