Can’t dismiss sheet containing a font picker
When I scroll down to dismiss a sheet containing a UIFontPickerViewController, there is some extra space instead. import UIKit import SwiftUI public struct SUIFontPicker: UIViewControllerRepresentable { @Environment(\.presentationMode) var presentationMode private let onFontPick: (UIFontDescriptor) -> Void public init(onFontPick: @escaping (UIFontDescriptor) -> Void) { self.onFontPick = onFontPick } public func makeUIViewController(context: UIViewControllerRepresentableContext<SUIFontPicker>) -> UIFontPickerViewController { let configuration … Read more