libcosmic-yoda/src/widget/grid/mod.rs
2023-10-12 16:37:38 +02:00

12 lines
295 B
Rust

// Copyright 2023 System76 <info@system76.com>
// SPDX-License-Identifier: MPL-2.0
pub mod layout;
pub mod widget;
pub use widget::Grid;
/// Responsively generates rows and columns of widgets based on its dimmensions.
pub const fn grid<'a, Message>() -> Grid<'a, Message> {
Grid::new()
}