Incompatible widget content
The body of the widget entry's view contains the following unsupported types: PlatformViewRepresentableAdaptor.
All I have in the body of my accessoryCircular widget is:
ProgressView(value: 0.3, total: 1.0)
Any way to fix this?
Post
Replies
Boosts
Views
Activity
Is there a way to revert the Xcode autocomplete style to the Xcode 11 one?
In Xcode 12, when typing, for example:
UIFont(
The autocomplete shows:
()
(descriptor:size:)
(name:size:)
Previously, it would show:
() -> UIFont
(descriptor: UIFontDescriptor, size pointSize: CGFloat) -> UIFont
(name fontName: String, size fontSize: CGFloat) -> UIFont?
Its really inconvenient not being able to see the input type of all of them. It only shows you the full thing for the highlighted one below the table. Is there a way to show them again?