Jeroen Ransijn

Results 17 comments of Jeroen Ransijn

> Slightly unrelated question to this PR, but I am curious, how are you getting the size of the items? Have you tried increasing the estimatedItemSize prop? @clauderic yeah I...

We could do something like the following and also update this on `componentWillReceiveProps`. Or simply pass `itemSize` down to the manager. Or pass down the `totalSize` directly. What you think?...

Hey @clauderic tried implementing your changes. I added the `getSize` method to the `SizeAndPositionManager` instead of `itemSizeGetter`. Let me know if this makes sense. I accidentally was running yarn at...

Here is an example of what I am describing above ![scrolling total size](https://user-images.githubusercontent.com/564463/43477921-51fc1170-94b1-11e8-9848-d33975360956.gif) ```Typescript const range = N => Array.from({length: N}, (_, k) => k + 1); class MixedHeight extends...

Got it to work, about to put in a PR. Scrolling is buttery smooth. ![scrolling total size fixed](https://user-images.githubusercontent.com/564463/43480539-75ea19ae-94b8-11e8-8b3e-1a656fb344a6.gif) ```jsx ```

Chiming in pretty late here. I am all for piggy backing of `react-sketchapp` so we don't have to solve things in two places. What is the progress currently on this?

@KimDal-hyeong we might be able to see if something is hidden or not based on what we get back from `window.getComputedStyle`: * `width` * `height` * `visibility` * `display` Or...

That looks pretty amazing! I am all for outsourcing the parsing as much as possible, and relying on something like this. Do you know how much different CSS is from...

@kdzwinel I looked through some of the repos under reworkcss and I see it's mainly concerned about parsing the css itself, [not so much declarations](https://github.com/reworkcss/css#declaration). Let me know if you...