Mats

Results 11 comments of Mats

I agree @colshacol and @JalilArfaoui . Since it is so obvious that whatever passed into `` will be treated as a boolean, like a normal if statement in JavaScript, I...

Yes, you can. If I am not entirely mistaken, the word ids contained in the `Glove` class' `self.dictionary` correspond to the word's vector's index in `self.word_vectors`. I did this to...

@socialcode-rob1 No, the error callback is not called. I have the same problem. The `openCamera` promise never resolves. In my case, I can make work my way around this by...

Great find! Maybe you could submit a PR on this, @dinhbt? And a markdown tip: Use `diff` to mark lines changed more easily, like so: ```diff This line has not...

Same here. I haven't been able to build my Android app because of this 522 timeout problem. Problematic dependencies for me: * https://jitpack.io/it/unimi/dsi/fastutil/7.2.0/fastutil-7.2.0.pom * https://jitpack.io/net/bytebuddy/byte-buddy/1.9.10/byte-buddy-1.9.10.pom

We are using Yarn Workspaces and are patching `metro-react-native-babel-transformer/src/index.js` using [patch files](https://www.bekk.christmas/post/2019/4/patching-your-node_modules): ```diff babelRC = { plugins: [], + babelrcRoots: [ '../*' ], extends: extendsBabelConfigPath }; ``` This works, but...

I'm guessing this is the same as, or at least very similar to, https://github.com/ivpusic/react-native-image-crop-picker/issues/274 and https://github.com/ivpusic/react-native-image-crop-picker/issues/132 I am having the same problem. ImagePicker is undefined. I have tried so many...

A rule for enforcing that all `` components have `accessibilityTraits` and `accessibilityComponentType` props set, would be awesome! And perhaps `accessibilityLabel`.