Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@AlankritaShah
Created October 27, 2022 21:10
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 AlankritaShah/0903a073f88cb76e6e820d9c93d0858d to your computer and use it in GitHub Desktop.
Save AlankritaShah/0903a073f88cb76e6e820d9c93d0858d to your computer and use it in GitHub Desktop.
@Composable
fun BusinessCardBottom() {
Column(
modifier = Modifier
.fillMaxWidth()
.padding(0.dp, 0.dp, 0.dp, 50.dp),
horizontalAlignment = Alignment.CenterHorizontally,
verticalArrangement = Arrangement.Bottom
) {
BusinessCardBottomRow("contact@gmail.com")
BusinessCardBottomRow("contact@gmail.com")
BusinessCardBottomRow("contact@gmail.com")
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment