List

DaisyUI

List is a vertical layout to display information in rows.

Basic List
  • DaisyUI
    A popular component library
  • Tailwind CSS
    A utility-first CSS framework
  • Rust
    A systems programming language
List with Columns

Rows with multiple columns.

  • Title
    Description that grows
  • Another
    More description text
Code Example
use rsxui::components::{List, ListRow};
use rsx_macros::rsx;
let html = rsx! {
    <List>
        <ListRow>"Item 1"</ListRow>
        <ListRow>"Item 2"</ListRow>
    </List>
};