lipgloss-list 0.0.6

A list component for terminal user interfaces, styled with Lip Gloss.
Documentation

Package list allows you to build lists, as simple or complicated as you need.

Simply, define a list with some items and set its rendering properties, like enumerator and styling:

use lipgloss_list::{List, arabic};

let groceries = List::new()
    .items(vec!["Bananas", "Barley", "Cashews", "Milk"])
    .enumerator(arabic);

println!("{}", groceries);