My custom controls stopped working after updating Xcode to 12.1 from 12.
It works in application project, but it doesn't work in Widget Extension.
Sample view that stopped working:
If you remove trim it renders correctly. With trim nothing appears. It worked before.
It works in application project, but it doesn't work in Widget Extension.
Sample view that stopped working:
Code Block struct WidgetsEntryView : View { var body: some View { Circle() .trim(from: 0, to: 0.75) } }
If you remove trim it renders correctly. With trim nothing appears. It worked before.