Use a floating action button to delete a page
This commit is contained in:
@@ -151,9 +151,9 @@ private fun DocumentPreview(
|
|||||||
.padding(4.dp)
|
.padding(4.dp)
|
||||||
.align(Alignment.Center)
|
.align(Alignment.Center)
|
||||||
)
|
)
|
||||||
IconButton(
|
SmallFloatingActionButton(
|
||||||
onClick = { onDeleteImage(imageId) },
|
onClick = { onDeleteImage(imageId) },
|
||||||
modifier = Modifier.align(Alignment.TopEnd)
|
modifier = Modifier.align(Alignment.TopEnd).padding(4.dp)
|
||||||
) {
|
) {
|
||||||
Icon(imageVector = Icons.Outlined.Delete, contentDescription = "Delete page")
|
Icon(imageVector = Icons.Outlined.Delete, contentDescription = "Delete page")
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user