button with text and icon ios swivft code example
Example: button image not working swiftui
var body: some View {
Button(action: {
print("button pressed")
}) {
Image("marker")
.renderingMode(.original)
}
}