SKStoreReviewController in write review white colour issue

In write reviewsection review text colour seems to set to white. Not able to see review text as user types it.
attached link of the video https://drive.google.com/open?id=1_R_ys7VYoWXgHmAe1Ilnf1OlocVr-tgc

Replies

Did you find a solution?
I have same issue. I resolve it by removing UserInterfaceStyle setting in Info.plist and set light mode in AppDelegate with code:
Code Block
if #available(iOS 13.0, *) {
overrideUserInterfaceStyle = .light
}