Hello friend!
We've noticed that on iOS 13 with Dark Mode enabled, the selector is invisible:

I've gotten this to work for me by adding a:
if #available(iOS 13.0, *) {
actionController.overrideUserInterfaceStyle = .light
}
Right before presenting calendar selector!
I also notice that I can't seem to set the style to anything dark, I was going to add a
if #available(iOS 13.0, *) {
puts("!: we are 13")
if self.webViewController?.traitCollection.userInterfaceStyle == .dark {
puts("!: We are dark")
style = RMActionControllerStyle.black
}
}
// then initialize the actionController
let actionController: RMDateSelectionViewController = RMDateSelectionViewController(style: style)!
However, even hardcoding it to .black seems to make keep it white!
Hello friend!
We've noticed that on iOS 13 with Dark Mode enabled, the selector is invisible:

I've gotten this to work for me by adding a:
Right before presenting calendar selector!
I also notice that I can't seem to set the style to anything dark, I was going to add a
However, even hardcoding it to
.blackseems to make keep it white!