Skip to content

Instantly share code, notes, and snippets.

@PatilShreyas
Created July 30, 2021 13:07
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 PatilShreyas/7fd0d97e3a90906bd89dcd773ed3fb38 to your computer and use it in GitHub Desktop.
Save PatilShreyas/7fd0d97e3a90906bd89dcd773ed3fb38 to your computer and use it in GitHub Desktop.
@Composable
fun Social() {
val text = buildAnnotatedString {
append(AnnotatedString("LinkedIn ", spanStyle = SpanStyle(Color.Blue)))
// TODO: Add Divider here
append(AnnotatedString(" Twitter ", spanStyle = SpanStyle(Color.Blue)))
// TODO: Add Divider here
append(AnnotatedString(" Portfolio", spanStyle = SpanStyle(Color.Blue)))
}
BasicText(text = text, style = TextStyle(fontSize = 17.sp))
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment