A flutter implementation of the Material Design 3 carousel.
Built on the CarouselView.
-
Hero carousel with support for "left", "center" and "right" alignments.

-
Horizontal or vertical scrolling via
axis.
In your pubspec.yaml
dependencies:
m3_carousel: ^2.1.4 # requires Dart => ^3.12.0, Flutter >=3.38.0import "package:m3_carousel/m3_carousel.dart";
M3Carousel(
type: CarouselType.hero,
heroAlignment: HeroAlignment.center,
axis: Axis.horizontal,
onTap: (int tapIndex) => log(tapIndex.toString()),
children: List<Widget>.generate(10, (int index) {
return ColoredBox(
color: Colors.primaries[index % Colors.primaries.length]
.withValues(alpha: 0.8),
child: const SizedBox.expand(),
);
}),
),See example/lib/main.dart for complete examples.
Use of CarouselView is govern by the Flutter Authors LICENSE
MIT license

