François

Results 44 comments of François

Working with Typescript is a huge plus, and it's much easier to share API with others. I would recommend that to if possible.

Hello @zplata I couldn't find the `resizeDrawingSurfaceToCanvas` neither as a method nor as a static method of the Rive class. I'm using `@rive-app/[email protected]` Here are the available methods from the...

@barbalex useWatch has been deprecated: https://qwik.builder.io/docs/deprecated-features/ You can use `useTask$` or `useVisibleTask$` depending on your usecase

You can use useTask$ like that then: ```jsx useTask$(() => { return () => saveForm(); }) ``` Or alternatively with the [cleanup function](https://qwik.builder.io/docs/components/tasks/#cleanup) : ```jsx useTask$(({ cleanup }) => {...

Ah, too bad. This would have been very convenient.

I'm creating a wrapper around the firebase sdk with qwik to lazy load firebase instanciation and reduce bundle size. The `firestore` object is globally configured, so I use a Context....

Ah sorry I thought Context was used to managed global variable, like dependency injection in Angular. So I can use a top level variable that I would pass around ?...

This error happens even with no dynamic content. As long as you've got a back quote in the `import()` function, vite throw the error: ``` [vite] Internal server error: Dynamic...

Yes that would be cool if Link was doing it by default. Another issue I had with Link, but not really related to this issue, is that we cannot hook...

oh wow ! I'm sorry I should have looked more into the code before talking 😅. I think that is worth been mentioned in the doc 😊