Images not rendering in new iOS 16 Widgets?

I'm working on a new .accessoryInline widget, introduces with iOS 16. It's very simple, only displays static text and an image, said image is a custom SF Symbol, validated and also used in other places in which it works just fine (for example a .accessoryRectangular widget). Here is my code:

case .accessoryInline:
            HStack {
                Image("mysymbol.car")
                  .resizable()
                  .widgetAccentable()
                Text("My Static Title")
            }

This however only renders the text when running the app and leaves a weird small space where the image should be. Am I doing something wrong or is it a bug?

Can you give us a screenshot to show what it looks like?

Have you tried removing .widgetAccentable()?

Try adding this: .renderingMode(.template). Might do something, might not.

I had an issue with a standard SF Symbol. It would render as a block instead of the actual image, which might be what's happening to you.

Images not rendering in new iOS 16 Widgets?
 
 
Q