Aurélien Boquet

Results 33 comments of Aurélien Boquet

@mohitbhansali Hi, can you show me the part where you change media or when you are releasing it ? It's not working on react-native-video and I'm searching how to correct...

@ramon90 It's a little more complicated, I use only one Video Component but change the videoUrl fast sometimes, and since react-native update asynchronously, I think it can create race conditions....

I think you can check several things to help you with performance issues : - You need to memoizee your items components. They will be a lot of render so...

@pcholuj is there any way I can help you on that ?

Seems like a polyfill exist for this web API : https://www.npmjs.com/package/@tanker/file-ponyfill

@thiagobustamante That would be so great to have observable support, do you think we can merge this any time ?

any update ? 🙏

these lines in componentDidUpdate of SortableListComponent are causing this issue : ```js if (prevProps.scrollEnabled !== scrollEnabled) { this.setState({ scrollEnabled: prevProps.scrollEnabled }); } ``` You can comment them.

> Implement a non-blocking async API for writing large values to storage without blocking the JS thread > Implement async multiGet & multiSet functions for intensive read/write Those 2 things...