Renaud Déchaux
Renaud Déchaux
I just gave up installing my project with RN version 0.70. Impossible to install Bundler because of the Ruby version, impossible to make any Ruby version manager work
> Just install ruby using rvm instead of rbenv its life saving. [https://nrogap.medium.com/install-rvm-in-macos-step-by-step-d3b3c236953b](url) Thanks! I had to reinstall cocoapods for having the ruby version with rvm knowing the right path.
Hi, I was not able to reproduce your bug in release mode, can you update a gif or more details? Try to use the latest version `1.1.3` also.
Thanks for your PR! I think it's not optimal to just add the library you need and to give the choice between the RN's Flatlist component and the gesture handler...
Want to add my thank for the big work done in august here, while I was on holidays ^^ Congrat for the V3, and if I understood, @dai-shi (I follow...
Here the code that doesn't work: ```ts ... async function diffuseQueue(queue: MediaQueueItem[]): Promise { try { if (client) { await client.loadMedia({ queueData: { items: queue, }, autoplay: true }); return...
Thank I will check that!
I tried to group my logic on the useEffect to start the cast like you said but it didn't work, same error than before.
I put everything in the useEffect to be sure to have no exterior dependencies.
```ts ... // we start casting if client is not null useEffect(() => { async function diffuseQueue(queue: MediaQueueItem[]): Promise { try { console.log('CLIENT: ', client) if (client) { await client.loadMedia({...