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