Expand description
Sheet Component
Slide-out side panels styled like shadcn/ui Sheet. Extends from the edge of the screen for navigation, settings, or forms.
§Example
use armas_basic::{Sheet, SheetSide, Theme};
let theme = Theme::dark();
let mut open = true;
Sheet::new("my-sheet")
.side(SheetSide::Right)
.open(open)
.title("Edit Profile")
.description("Make changes to your profile here.")
.show(ctx, &theme, |ui| {
ui.label("Content goes here");
});Structs§
- Sheet
- Sheet component
- Sheet
Response - Response from showing a sheet