#list #egui #ui #virtual-list

egui_virtual_list

A virtual list widget for egui, with support for variable height items

5 releases (breaking)

0.5.0 Oct 3, 2024
0.4.0 Jul 3, 2024
0.3.0 Apr 2, 2024
0.2.0 Feb 7, 2024
0.1.0 Jan 21, 2024

#828 in GUI

Download history 226/week @ 2024-06-30 30/week @ 2024-07-07 55/week @ 2024-07-14 65/week @ 2024-07-21 32/week @ 2024-07-28 15/week @ 2024-08-04 4/week @ 2024-08-11 48/week @ 2024-08-18 2/week @ 2024-08-25 9/week @ 2024-09-08 21/week @ 2024-09-15 15/week @ 2024-09-22 170/week @ 2024-09-29 29/week @ 2024-10-06 15/week @ 2024-10-13

231 downloads per month
Used in 4 crates

MIT license

30KB
264 lines

egui_virtual_list

egui_ver Latest version Documentation unsafe forbidden License

This crate adds a virtual list widget to egui. Egui has a basic build in virtual list in the ScrollArea widget. This crate has some extra features though:

  • Supports items with varying heights
    • Heights are calculated lazily and cached, as you scroll further down the list
  • Supports custom layouts, so you could place multiple items in a single row
  • Allows for adding items at the top without the scroll position changing

There are some limitations though:

  • If you want to support a crazy amounts of items (1000000+ items), where you can instantly jump anywhere in the list, I recommend using egui's built in ScrollArea instead.
  • Horizontal scrolling is not supported yet, but it should be easy to add if needed.

If you want to build a infinite scroll list, I recommend using the egui_infinite_scroll crate instead, which is using this crate internally.

Dependencies

~4–9MB
~87K SLoC