When using PKCanvasView and PKToolPicker in a SwiftUI project using Xcode 13, the PKToolPicker disappear when I blur the view, and it doesn't come back when I remove the blur effect. I am trying to create a popup (to add some setting to the view), but here I simplify the example to just just to see the consequences of the blur effet. When the blur effect is applied, the PKToolPicker disappear, but when I remove the effect, the PKToolPicker despot come back, so it is still possible to right non the PKCanvasView, but it is not possible to change the Pencil or the color anymore. Does anyone know how to get the PKToolPicker back? here is a sample code import SwiftUI struct ContentView: View { @Environment(.managedObjectContext) private var viewContext @State private var isBlured = false var body: some View { VStack { Button(action: { isBlured.toggle() print(isBlured (isBlured)) }, label: { Image(systemName: questionmark) }) DrawingView(id: nil, data: nil, title: test).blur(radius: isBlured ? 30