Talha Naqvi

Results 28 comments of Talha Naqvi

How big are the bundle sizes right now?

Why not make the production build with webpack? Dev experience can still be great using metro.

Returning the same stableId for two different items? Any repro steps or expo snack?

Can you share you data provider and row renderer if possible? Also make sure stableId is a string

One thing I can think of is that you might be mutating the same array that you passed to DataProvider. Ideally according to immutability principle you shouldn't. Try cloning instead...

And the project is very much active. We just released two huge projects on top of this. Beta is much more active :)

I'm investigating. Let me get back.

So, I've figured out the issue. Consider the following example: ``` Stable Ids (Scenario 1): 1, 2, 3, 4, 5, 6, 7, 8, 9 Visible Indices: 1 to 7 Post...

Yes, if you look at the `ViewRenderer` class there is scope to accept it from outside as a dependency. If you do that you will then be able to move...

@bradbumbalough You will have to accept ViewRenderer's internal cell externally as a prop. Basically RLV will get one more method called `getViewHolderForType()` where you return your container. In this component...