Ori Kadosh

Results 7 comments of Ori Kadosh

Hi @blakjakau have you managed to convert it eventually?

as said before, you can use https://www.npmjs.com/package/react-native-fs instead of fs, but it's not enough. you'll need to install https://www.npmjs.com/package/@tensorflow/tfjs-react-native. use `faceapi.setEnv` to initialize, face-api is excpecting an Environment interface ```...

Hi @mbrookes, currently you take the `defaultValue` from `getInitialState()` this function is Invoked once before the component is mounted. If I need to get my `defaultValue` from a server (via...

any plans to merge this one?

any updates on this one?

possible solution: ``` onOpen={(sectionID, rowId, direction)=>{ if(this.state.isSwiped || !direction){ return; } this.setState({ isSwiped: true, swipeDirection: direction }) // do your logic here }} ```

Hi, you can easily achieve this by using inputProps: ``` inputProps={{onKeyPress: (e)=>{ if (e.key === 'Enter') { // do whatever } }}} ```