The image above is in dark mode, with the following setup in the app delegate:
if (@available(iOS 13.0, *)) {
self.window.backgroundColor = [UIColor systemBackgroundColor];
}
The problem is that the top white should be black in dark mode.
How can I make that happen?
Thanks.