devridge0 / devridge0/aic-mobile-ios
Add Dark Mode Support for UI
Open
enhancement
UI
- Dominant language
- Swift
- Stars
- 6
- Forks
- 0
- PR merge metrics
- No merged PRs in 30d
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:
``` swift
// Example: set dynamic background color
view.backgroundColor = UIColor { trait in
trait.userInterfaceStyle == .dark ? .black : .white
}
```
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.