pub struct GridProps {
pub columns: u8,
pub md_columns: Option<u8>,
pub lg_columns: Option<u8>,
pub gap: GapSize,
pub scrollable: Option<bool>,
pub children: Vec<ComponentNode>,
}Expand description
Props for Grid component — multi-column layout.
Fields§
§columns: u8Number of columns (1-12) at base (mobile) viewport.
md_columns: Option<u8>Number of columns at md breakpoint (768px+). When set, creates a responsive grid.
lg_columns: Option<u8>Number of columns at lg breakpoint (1024px+). Optional; falls back to md.
gap: GapSizeGap between grid items.
scrollable: Option<bool>Enables horizontal scroll mode. Children get min-w-[280px] and the grid
uses grid-flow-col auto-cols layout for Trello-like horizontal scrolling.
children: Vec<ComponentNode>Trait Implementations§
Source§impl<'de> Deserialize<'de> for GridProps
impl<'de> Deserialize<'de> for GridProps
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl StructuralPartialEq for GridProps
Auto Trait Implementations§
impl Freeze for GridProps
impl RefUnwindSafe for GridProps
impl Send for GridProps
impl Sync for GridProps
impl Unpin for GridProps
impl UnsafeUnpin for GridProps
impl UnwindSafe for GridProps
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more