react-native-date-picker icon indicating copy to clipboard operation
react-native-date-picker copied to clipboard

illegal callback invocation from native module

Open thinh1991999 opened this issue 1 year ago • 3 comments

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

thinh1991999 avatar Jun 26 '24 03:06 thinh1991999

Hi @henninghall , can you help me with this issue?

thinh1991999 avatar Jul 08 '24 06:07 thinh1991999

Hi @henninghall , can you help me with this issue?

thinh1991999 avatar Sep 12 '24 11:09 thinh1991999

any updates ? it shown in android also

Nader-CS avatar Jan 12 '25 08:01 Nader-CS