How to Add Inline Image Next to Text in SwiftUI

I am trying to add an image to the right of text to make the image appear inline.

However when i do this with a HStack the image is to the right of the image for 1 line text but multi line text the image is just to the right of the frame of the view for the text and not Inline as i need eg.

HStack { Text("Some Long Text") Image("info.circle") }


Can you please try :

Text("Some Long Text \(Image("info.circle"))")

How to Add Inline Image Next to Text in SwiftUI
 
 
Q