Artur Eshenbrener

Results 44 comments of Artur Eshenbrener

I just thought a little about replacement of mobx-deep-action. If developer uses `fast-async` transpilation, instead of async-to-gen, then mobx-deep-action become more useful than this plugin

Oh, sorry, this is already used. But before call `hg propmt`, `hg id` is called, which is slow. Is it possible to aviod tha call?

@jspizziri could you paste guide somewhere else pls? I can't access that content for unknown reason :(

@jspizziri could you please post an invite link?

I think one of possible solution could be not use such kind of libraries (like react-native-image-crop-picker, react-native-image-picker), but implement camera/library picking interface using react-native-camera & CameraRoll

@willgriffiths thank you for that solution. Based on yours, I made a more generic one: ```js const path = require("path"); const installedDependencies = require("./package.json").dependencies; const extraNodeModules = {}; Object.keys(installedDependencies).forEach(dep =>...

I use this plugin to remove warning. These warnings are useless, because TS already made a check for export exists. This plugin compatible with webpack 3 and 4 ```js const...

@rickgrundy thank you for this snippet! I forced to change for my project for extra check to not-null: ```java package com.chatium.app; import android.content.Intent; import android.os.Bundle; import android.support.v7.app.AppCompatActivity; public class SplashActivity...

@robmadole animating inner components of react-native-svg is possible, but need to use Animated-version of svg components. For example, instead of `Path` use `createAnimatedComponent(Path)`. For now it is not possible with...