Error dismissing SwiftUI ColorPicker : "Connection to plugin interrupted while in use"

Viewed 458

I keep getting this warning after dismissing the Color Picker in SwiftUI:

[lifecycle] [u 17309674-CE1F-40CF-AD78-169944F5137B:m (null)] [com.apple.UIKit.ColorPicker(1.0)] Connection to plugin interrupted while in use.

Am I the only one? I've had it since early SwiftUI versions and thought it was a bug on their part, but I keep seeing it even after updating to latest versions of the kit...

... Must be me? I don't see what I do wrong though, I'm using the UI component pretty straightforwardly

Any ideas? Here's the basic code:

@EnvironmentObject var selectedColor: SelectedColor
...
ColorPicker("Tool Color", selection: $selectedColor.value, supportsOpacity: true)
1 Answers

This issue seems resolved with SwiftUI 3.0

Related