Created
June 21, 2021 16:31
-
-
Save sergenes/6a8ee3731ea19d06dc7b28666fe9aa45 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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