Skip to content

Instantly share code, notes, and snippets.

@manojbhadane
Created April 8, 2022 18:06
Embed
What would you like to do?
ClickableText(
text = AnnotatedString("Sign up here"),
modifier = Modifier
.align(Alignment.BottomCenter)
.padding(20.dp),
onClick = { navController.navigate(Routes.SignUp.route) },
style = TextStyle(
fontSize = 14.sp,
fontFamily = FontFamily.Default,
textDecoration = TextDecoration.Underline,
color = Purple700
)
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment