traversal_slider 1.0.2
traversal_slider: ^1.0.2 copied to clipboard
The traversal_slider package is a Flutter widget that allows for the smooth and animated traversal of widgets in a circular rotation.
import 'package:example/homepage.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 HomePage());
}
}