William Candillon

Results 314 comments of William Candillon

let's do it 🙌🏼

The solution from @va-p seems to be a great workaround until this issue is fixed. I ran into the exact same issue.

Thank you for this extremely useful library. @Andr3wHur5t I changed my code to: ``` { Platform.OS === "ios" && } ``` But how do I know if the android version...

@sibelius your answer "use only for ios" makes sense but how to detect the running version of android needs to run this as well? 🤔

The problem was still happening a few weeks ago, but I would be happy to try on a more recent version. https://github.com/Shopify/react-native-skia/blob/main/package/src/renderer/Canvas.tsx#L33 is that any good? What does it do?

The issue in the video above is only reproducible by using a `` within the Skia renderer (tested with v3.0.4). Now that we have react native web support part of...

I am not able to reproduce the issue at the moment (not in a small example at least).

You could export a class that depends on [Expo](https://docs.expo.io/versions/latest/guides/using-custom-fonts) to load the font. This is how I load my fonts at the moment: ```js async componentDidMount(): Promise { await Font.loadAsync({...

We fixed/merged that a while back already :)

There is an API in Skia that would support gif: https://github.com/google/skia/blob/main/include/android/SkAnimatedImage.h And you can see how CanvasKit uses it: https://github.com/google/skia/blob/main/modules/canvaskit/canvaskit_bindings.cpp#L943 However this is not in our current roadmap, @jayeve is...