Skip to content

Instantly share code, notes, and snippets.

@sergenes
Created June 21, 2021 16:31
Show Gist options
  • Select an option

  • Save sergenes/6a8ee3731ea19d06dc7b28666fe9aa45 to your computer and use it in GitHub Desktop.

Select an option

Save sergenes/6a8ee3731ea19d06dc7b28666fe9aa45 to your computer and use it in GitHub Desktop.
if (editMode && deleteMode) {
Button(
onClick = {
onDelete()
deleteMode = false
},
modifier = Modifier
.width(deleteButtonWidth)
.fillMaxHeight(),
shape = RoundedCornerShape(noRadius),
colors = ButtonDefaults.outlinedButtonColors(
contentColor = Color.White,
backgroundColor = Color.Red
)
) {
Text("Delete")
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment