Expand description
Carousel Component (shadcn/ui style)
A scrollable content strip with prev/next navigation and snap-to-item behavior.
use armas_basic::prelude::*;
let mut carousel = Carousel::new("demo");
carousel.show(ui, 5, |ui, index| {
ui.label(format!("Slide {}", index + 1));
});Structs§
- Carousel
- Carousel — a scrollable content strip with snap-to-item behavior.
- Carousel
Response - Response from a carousel.
Enums§
- Carousel
Orientation - Carousel orientation.