<Dialog.Container
onBackdropPress={() => setShowDeleteDialog(false)}
visible={showDeleteDialog}
>
<Dialog.Title>Delete Request</Dialog.Title>
<Dialog.Description>
Are you sure you want to delete this material request?
</Dialog.Description>
<Dialog.Button
onPress={() => setShowDeleteDialog(false)}
label="Cancel"
></Dialog.Button>
<Dialog.Button
onPress={() =>
deleteMutation.mutate(query.data.payload.id)
}
label="Delete"
></Dialog.Button>
</Dialog.Container>
Platforms
Only on Android
Versions
Reproducible Demo
change the appearance to dark mode