I have the below following code and I want to put some image to the area that highlighted in red. How can I do that in SwiftUI?
Here is highlighted red area example: https://ibb.co/6X2zvyq
struct ContentView: View {
var body: some View {
NavigationView {
Form {
Section(header: Text("Info")) {
HStack {
Text("Name")
Spacer()
Text("someName")
}
HStack {
Text("Surname")
Spacer()
Text("someSurname")
}
}
}
.navigationBarTitle("Profile")
}
}
}
