2023-10-02 16:46:16 +02:00
|
|
|
// Copyright 2023 System76 <info@system76.com>
|
|
|
|
|
// SPDX-License-Identifier: MPL-2.0
|
|
|
|
|
|
2024-05-20 20:01:47 +02:00
|
|
|
//! Arrange widgets with a grid layout.
|
|
|
|
|
|
2023-10-02 16:46:16 +02:00
|
|
|
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
|
|
|
|
2024-05-20 20:01:47 +02:00
|
|
|
/// Arrange widgets with a grid layout.
|
2023-10-02 16:46:16 +02:00
|
|
|
pub const fn grid<'a, Message>() -> Grid<'a, Message> {
|
|
|
|
|
Grid::new()
|
|
|
|
|
}
|