Karunakar Antham
Karunakar Antham
``` export const countries = [ { name: 'Europe', value: 'Europe', type: 'group', items: [ { name: 'Sweden', code: 'Sweden', value: 'SE', disabled: true }, { name: 'Denmark', code: 'Denmark',...
any update on this ?
core problem is when you run react-native link, its linking twice, so you should remove entry in settings.gradle and build.gradle and mainApplication.java(imports/ initializing) better way to fix it is avoiding...
in your component, replace onScroll with ``` onScroll={(e) => { const currentScrollPos = e.nativeEvent.contentOffset.y const sensitivity = 50 if (Math.abs(currentScrollPos - this.state.lastScrollPos) > sensitivity) { this.props.doSomething() this.setState({lastScrollPos: e.nativeEvent.contentOffset.y }) }...
@matthew-andrews any update on this ?
I think this happens when you have remote debugging enabled and when you save codebreaking kind of error. So when you save buggy code, bundle tries to load updated code...
hej this looks really promising one, Did u made any progress to make it work on different api's . It would be really great, if you can create a PR...
its the problem with escope package with latest version 3.4.0. if you downgrade it like `npm install --save-dev [email protected]` it should work