Skip to content

Instantly share code, notes, and snippets.

@vipulasri
Created March 12, 2020 12:55
Show Gist options
  • Save vipulasri/c816aec8b4ddc35621af95c6203f0600 to your computer and use it in GitHub Desktop.
Save vipulasri/c816aec8b4ddc35621af95c6203f0600 to your computer and use it in GitHub Desktop.
JetDelivery-banner-text
@Composable
private fun showBannerText() {
Align(alignment = Alignment.BottomLeft) {
Container(
modifier = LayoutWidth.Fill, height = 50.dp,
alignment = Alignment.CenterLeft
) {
DrawShape(shape = RectangleShape, color = Color.Black.copy(alpha = 0.3f))
Text(
text = "Upto 30% off",
style = currentTextStyle().copy(color = Color.White, fontSize = 12.sp),
modifier = LayoutPadding(10.dp)
)
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment