Skip to content

Instantly share code, notes, and snippets.

@manojbhadane
Created April 8, 2022 18:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save manojbhadane/caee2d1bd894b50ac97f7cd7fa457f03 to your computer and use it in GitHub Desktop.
Save manojbhadane/caee2d1bd894b50ac97f7cd7fa457f03 to your computer and use it in GitHub Desktop.
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