Daniel Stone

Results 32 comments of Daniel Stone

I'm wanting to use this library, but I need the extrude option because I've got a few tiling sprites, so I'll chime in and second that it'd be nice if...

I'm also encountering this, but @Martinwagner-novasa's fix worked for me, thanks! The key bit was the conversion to localdensity. Without that, I was seeing the same behavior as the bug....

So I did some more digging on this, and I now see what's going on here. As it turns out, FlowRow is actually working correctly, the problem is that Compose's...

Looking at `utils.abcratio`, I see it returns `t` if `t === 0`, so this function would error if you ever pass it 0 for t.

The CellMeasurer does support using a ref to measure its child instead of the default way. I think that's the recommended way that's compatible with future versions of React.

For my use case, I can guarantee that my cells never get removed or change size, so I've copied the CellMeasurerCache and modified it to not iterate all the rows,...

So the actual cases for this that I've come across are in integration tests, either when we convert a struct to json and back, or when we read times from...

Crashlytics only handles native crashes by default. You'll need to send javascript errors manually using `FabricPlugin.logError`, which is supposed to report them as non-fatal errors. I'm looking into this myself...

I'm pretty new here myself, but it looks like this repo is currently in transition as to maintainers. See this issue: https://github.com/arnesson/cordova-plugin-firebase/issues/1060 For myself, I'm looking into a fork by...

Alright, turns out iOS logging was indeed broken because it was calling the wrong method in CrashlyticsKit. I've fixed it for myself and have done a PR to the wizpanda...