revue 2.71.1

A Vue-style TUI framework for Rust with CSS styling
Documentation
1
2
3
4
5
use revue::widget::option_list;
#[test]
fn test_option_list_new() { let list = option_list(); }
#[test]
fn test_option_list_options() { let list = option_list().options(vec!["a".to_string()]); }