Skip to content

Instantly share code, notes, and snippets.

@merttoptas
Created April 24, 2022 10:24
Show Gist options
  • Save merttoptas/0c2fce5a6ac72512280368baf30035d1 to your computer and use it in GitHub Desktop.
Save merttoptas/0c2fce5a6ac72512280368baf30035d1 to your computer and use it in GitHub Desktop.
@Composable
fun CreateAccountButton(modifier: Modifier) {
BloomButton(
onClick = { /*TODO*/ },
modifier = modifier
.padding(horizontal = 16.dp),
colors = ButtonDefaults.buttonColors(backgroundColor = MaterialTheme.colors.onPrimary),
text = "Create Account",
borderColor = MaterialTheme.colors.onPrimary
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment