curved_list_wheel 1.1.1
curved_list_wheel: ^1.1.1 copied to clipboard
A highly customizable Flutter list wheel widget that scrolls items along a curved path, allowing for advanced animations and layouts.
import 'package:flutter/material.dart';
import 'screens/home_screen.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
debugShowCheckedModeBanner: false,
title: 'CurvedListWheel Example',
theme: ThemeData(
useMaterial3: true,
scaffoldBackgroundColor: const Color(0xFFECF1F2),
),
home: const HomeScreen(),
);
}
}