I have a controller with a PKCanvasView that's connected to the window shared PKToolPicker.
I can force the PKToolPicker to have a dark appearance (image 1) with:
if let window = self.parent?.view.window, let toolPicker = PKToolPicker.shared(for: window) {
toolPicker.overrideUserInterfaceStyle = .dark
}
Unfortunately if the user tap on the color picker button the color picker is not inherit the style and the picker is displayed with a light style (image 2).
Does anyone know how to force PKToolPicker's color picker to have a dark style on iOS 14?
Thank you
