Alexey Kureev

Results 111 comments of Alexey Kureev

Well, seems to be related to your Babel version/config. In the navbar I use `static` class properties, so you need to have an appropriate setting in your .babelrc (`transform-class-properties`). Check...

It's just about changing `.babelrc` config. Instead of using `stage`, use ``` js presets: [{ plugins: [ 'transform-class-properties' ] }, 'stage-0', 'es2015', 'react'] ``` and install corresponding plugins/presets. That's it.

I'm trying to do my best to have a time for fixing it. To be honest, I'd appreciate a PR a lot! Fixing semi colons doesn't sound like a big...

Sorry for being so lazy with reviewing it. I'm on vacation right now. Maybe @grabbou can take a look?

Hi @jurajkrivda! Hm, I haven't seen this issue before. Can you please provide the code which is failing? It'll help me to figure out what went wrong. Thanks in advance...

Thanks for the code! I'll try to reproduce it in a few hours and report back.

Hi @jurajkrivda! I finally found some time to investigate this issue (even though it tool longer than I expected). I've tried to use https://github.com/apollographql/frontpage-react-native-app as an example of an average...

Unfortunately, it isn't my repo. I updated dependencies manually in order to make it work with `react-native-network-proxy` (XHRInterceptor has been introduced in the latest versions). I'll create an `examples` folder...

What do you think about Android approach? Would it be useful for you, @tgoldenberg @niftylettuce?