svelte-infinite-list

Svelte Infinite List

A Svelte component for infinite scrolling lists

svelte-infinite-list

Create an infinite list of items with optimized rendering.

Installation

npm i --save-dev svelte-infinite-list # or yarn add -D svelte-infinite-list

Usage

<script>
  const alphabet = 'abcdefghijklmnopqrstuvwxyz'.split('')
</script>

<AsyncList
  class="h-full w-full hide-scroll"
  items={alphabet}
  itemsLoaded={5}
  let:item
>
  <p>{item}</p>
</AsyncList>

Buy me a ko-fi

Whether you use this project, have learned something from it, or just like it, please consider supporting it by buying me a coffee, so I can dedicate more time on open-source projects like this 😉 (personally I prefer hot chocolate but whatever)

License

Code released under GNU GPLv3 license.

Copyright ©, Olyno.

Top categories

Loading Svelte Themes