circular_carousel_slider 0.0.2 circular_carousel_slider: ^0.0.2 copied to clipboard
A circular carousel slider is a widget that displays content in a circular motion, allowing for continuous scrolling through the items.
import 'package:example/example.dart';
import 'package:flutter/material.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
// This widget is the root of your application.
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Demo',
theme: ThemeData(
colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple),
useMaterial3: true,
),
home: const Example(),
);
}
}