Skip to content

Instantly share code, notes, and snippets.

@ElifBon
Created March 8, 2020 20:43
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/812efdefcf96d80c58d136a07edde88c to your computer and use it in GitHub Desktop.
Save ElifBon/812efdefcf96d80c58d136a07edde88c to your computer and use it in GitHub Desktop.
@Composable
fun SpeakerInformation(speaker: SpeakerInfo) {
Column(
modifier = Spacing(16.dp)
) {
Container(modifier = Height(180.dp) wraps Expanded) {
Clip(RoundedCornerShape(5.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