I have created a dynamic link to google map and I want to show it on form as clickable. I have defined some fields on the form, like below. But, I suppose the TextField is not the correct way to show a link. How to do it? The link looks correct, but it is just text, not a link.
Spacer(modifier = Modifier.height(16.dp))
TextField(
label = { Text(text = "Content") },
value = description,
onValueChange = { description = it },
modifier = Modifier.fillMaxWidth()
)
Spacer(modifier = Modifier.height(16.dp))
TextField(
label = {Text(text = "")},
value = mapLink,
onValueChange = { },
)