Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@ElifBon
Last active March 8, 2020 20:37
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 ElifBon/900a8ca1b762c97e91bef79d9fe43834 to your computer and use it in GitHub Desktop.
Save ElifBon/900a8ca1b762c97e91bef79d9fe43834 to your computer and use it in GitHub Desktop.
@Composable
fun SpeakerInformation(speaker: SpeakerInfo) {
Column(
modifier = Spacing(16.dp)
) {
DrawImage(image = speaker.image)
Text(speaker.name)
Text(speaker.title)
Text(speaker.sessionTitle)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment