I want to make an infinity list using LitElement, LitHtml
Like this:
https://npm-demos.appspot.com/@polymer/iron-scrol...@3.0.1/demo/scrolling-region.html
Now I am only show fixed array: toFollow size 5
<div id = "wrapper" style="padding: 10px; ">
${repeat(toFollow, (item) => html`
<follow-card
id="followCard"
fullData=${item}></follow-card>
`)}
</div>
Anyone have same sample of this implementation in polymer 3!
Thanks