Skip to content

The Dialog.Title disappears on android with dark mode ON #156

@nimeshmaharjan1

Description

@nimeshmaharjan1

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>

Metadata

Metadata

Assignees

No one assigned

    Labels

    bugSomething isn't working

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions