Marcelo Terreiro Prado

Results 16 comments of Marcelo Terreiro Prado

Any updates? I could help with a PR, just need a brief guideline on how to do it.

We had the same issue at my company. Upgrading the dev-client to 1.2.1 solved the issue for us. If anyone's curious, here's the relevant commit: https://github.com/expo/expo/commit/0ce07b3d1cc2c59fd213982266a44d54c5715358

@marcjulian is this something you're willing to add? I agree with @jon-lewis that this would be very useful for users.

Tested on my end and it worked perfectly.

I figure it out. On my case, I needed to set up map properties before the map was actually ready. I had this: ``` // The "then" callback function provides...

Hey @ad-m, thanks for your suggestion. To be honest, I wasn't familiar with the `diff-index` command. Would you be willing to explain your use case? At my side, I run...

Hi @ad-m, sorry for the wait. I understood what you meant, great suggestion! Thanks 😀 I need to write a few unit tests for [this](https://github.com/MarceloPrado/has-changed-path/blob/master/src/hasChanged.js#L19-L39) function in order to guarantee...

You just need to declare the other interface method inside `Subscriber` class: ``` public class Subscriber : IDataSubscriber { public void DataReceived(dynamic data) { try { if (data.type == "sub")...

There is a cleaner way to remove the "first line that breaks everything". When you run `yarn run X`, yarn wraps the output of your script with a header and...

Awesome, I agree with your take on capturing the input coordinates instead of the view. And thanks for the demo and explanation, will debug what I'm doing wrong.