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 ;
let groceries = new
.items
.enumerator;
println!;
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);