Had the same Problem "Answer not accepted"
Rebuilt the Struct from the Start and the Following Solution gets accepted. (Maybe the text needs to be as prompted!)
cheers JaSagemal
var body: some View {
VStack {
HStack {
Image("Friend")
.resizable()
.scaledToFit()
VStack {
Text("Friend")
.font(.largeTitle)
Text("The best teacher of SwiftUI this side of the Milky Way!")
.font(.caption)
}
}
}
}
}