feat: reorderable flex row

This commit is contained in:
Hojjat 2026-05-01 13:21:07 -06:00 committed by Michael Murphy
parent 9c2a86a8f4
commit 0e0960f3c7
3 changed files with 1308 additions and 0 deletions

View file

@ -215,6 +215,10 @@ pub mod flex_row;
#[doc(inline)] #[doc(inline)]
pub use flex_row::{FlexRow, flex_row}; pub use flex_row::{FlexRow, flex_row};
pub mod reorderable_flex_row;
#[doc(inline)]
pub use reorderable_flex_row::{ReorderableFlexRow, reorderable_flex_row};
pub mod grid; pub mod grid;
#[doc(inline)] #[doc(inline)]
pub use grid::{Grid, grid}; pub use grid::{Grid, grid};

View file

@ -0,0 +1,8 @@
// Copyright 2026 System76 <info@system76.com>
// SPDX-License-Identifier: MPL-2.0
//! A keyed wrapping flex row whose items can be dragged to reorder.
mod widget;
pub use widget::{ReorderableFlexRow, reorderable_flex_row};

File diff suppressed because it is too large Load diff