feat: reorderable flex row

This commit is contained in:
Hojjat 2026-05-01 13:21:07 -06:00 committed by Lionel DARNIS
parent 675f3b59e3
commit 7dd0ee835d
3 changed files with 1308 additions and 0 deletions

View file

@ -213,6 +213,10 @@ pub mod flex_row;
#[doc(inline)]
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;
#[doc(inline)]
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