With the new App Scene WindowGroup structure in Xcode 12, how can you specify the white status bar? I've searched around but so far have not been able to find an answer.
@main
struct MyApp: App {
		var body: some Scene {
				WindowGroup {
						AppView()
				}
		}
}
Post
Replies
Boosts
Views
Activity
In iOS 14 SKStoreReviewController.requestReview() was deprecated and now should take a UIWindowScene. How should this be used?
SKStoreReviewController.requestReview(in: ?)