How can we design multiline text followed by button. I tried with the following snippet, text and button are placed horizontal.
HStack {
Text("Very long text Very long text Very long text Very long text Very long text")
Button {
} label: {
Text("Click here")
Image(uiImage: UIImage.add)
}
}
Only Button should be clickable with click effect.