feat(widget): initial implementation of Grid widget

This commit is contained in:
Michael Aaron Murphy 2023-10-02 16:46:16 +02:00 committed by Michael Murphy
parent 9ddadd330f
commit e1d1b0bad5
5 changed files with 509 additions and 0 deletions

View file

@ -106,6 +106,9 @@ pub mod divider {
pub mod flex_row;
pub use flex_row::{flex_row, FlexRow};
pub mod grid;
pub use grid::{grid, Grid};
mod header_bar;
pub use header_bar::{header_bar, HeaderBar};