react-native-modalbox icon indicating copy to clipboard operation
react-native-modalbox copied to clipboard

Using String Literals ref is depracated

Open josephakayesi opened this issue 6 years ago • 1 comments

How do I fix this issue when using the modal box please ?

josephakayesi avatar Jun 07 '18 10:06 josephakayesi

Insert this on your constructor constructor(props) { super(props); this.modalRef = null }

Update your ref attribute on your modal Component to <Modal ref={element => this.modalRef = element} > </Modal>

and use this.modalRef to access Modal's function

Source: React Documenation

abdullahizzuddiin avatar Jul 26 '18 04:07 abdullahizzuddiin