@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