Shaheen Ghiassy

Results 26 comments of Shaheen Ghiassy

Anyone able to verify if `proptypes` is the issue? Or better yet submit a PR?

The props for `SGListView` are transferred directly to the underlying React-Native `ListView`. Are you sure your separator works with a regular `ListView` element?

Not sure. Truthfully I haven't looked at this project in awhile. Have you tried using prop: `premptiveLoading`? If that doesn't work, perhaps `scrollRenderAheadDistance`?

Seems like there's a bug in the library's logic of determining when to hide/show cells. Either we're calculating the cell's dimensions incorrectly in `calculateDimensionsForCell` or we're incorrectly gauging when to...

`removeClippedSubviews={true}` will work for you @lmllml. But @rreusser, I don't think `removeClippedSubviews` works for all situations. I believe if you have a row with an image in it. You'll still...

You have `removeClippedSubviews` in your props twice, but I doubt that's causing any problems. The code looks good to me. Outside of the rendering bug, did `SGListView` solve your memory...

@jpdesigndev. This is a known issue. At this point, I'm not sure if the best approach is to fix the existing bug within the existing logic? Or to switch to...

@pesterhazy - Any chance you have time to submit a PR that uses those constants in `SGListView`? I'm super booked unfortunately.

Probably. The list view works by destroying views after they've scrolled off screen, so state would probably have to be persisted for items like radio buttons.

I could perhaps add a `props` flag that you can set per cell, for the View not to be destroyed when it scrolls out of view. Would that help? You'd...