Skip to content

illegal callback invocation from native module #837

Open
@thinh1991999

Description

@thinh1991999

Describe the bug
When I quickly click open and then cancel the date picker, sometimes an error modal appears with the message "Illegal callback invocation from native module." After this, I am unable to open the modal again. The state of open remains true even though the modal is closed.

Expected behavior
I should be able to repeatedly open and close the modal without encountering any errors or issues.

To Reproduce
When I click to open the date picker, the modal should appear.
If I cancel the date picker, the modal should close without any errors.
The state of open should correctly reflect the visibility of the modal. If the modal is closed, the state should be false; if the modal is open, the state should be true.

export default class App extends Component {

  state = { date: new Date() }

  render = () =>
    <DatePicker
      date={this.state.date}
      onDateChange={date => this.setState({ date })}
      open={open}
    />

}

Smartphone (please complete the following information):

  • OS: [iOS]
  • React Native version [0.73.6]
  • react-native-date-picker version [5.0.0]
Screenshot at Jun 26 10-54-28

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions