Skip to content

Instantly share code, notes, and snippets.

@vipulasri
Created March 12, 2020 12:53
JetDelivery-banner-rounded-corner
@Composable
fun showBannerElement() {
Container(width = 150.dp, height = 178.dp) {
Clip(shape = RoundedCornerShape(5.dp)) {
DrawImage(image = imageResource(id = R.drawable.placeholder_banner))
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment