-
Notifications
You must be signed in to change notification settings - Fork 110
Open
Labels
bugSomething isn't workingSomething isn't working
Description
Platforms
Only on Android
Versions
- "expo": "~50.0.13",
- "react-native-dialog": "^9.3.0",
- "react-native": "0.73.5",
- "react": "18.2.0",
Reproducible Demo
change the appearance to dark mode
<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>
srosato and mikekreeki
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working