I want to color a word in a sentence when touched, how can I get it?
var body: some View {
VStack(alignment: .center) {
Text("Hello world")
.gesture(){
// how to get the touched word?
}
}
}