interactive_slider_kit 0.1.1
interactive_slider_kit: ^0.1.1 copied to clipboard
Interactive Flutter sliders and dials: circular knobs, tier gauges, activity rings, bedtime pickers, studio meters, and category spin wheels — with themes, haptics, and callbacks.
import 'package:flutter/material.dart';
import 'gallery_page.dart';
void main() {
runApp(const InteractiveControlsExampleApp());
}
class InteractiveControlsExampleApp extends StatelessWidget {
const InteractiveControlsExampleApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'interactive_slider_kit example',
debugShowCheckedModeBanner: false,
theme: ThemeData(
colorScheme: ColorScheme.fromSeed(
seedColor: const Color(0xFFFF6422),
brightness: Brightness.dark,
),
useMaterial3: true,
),
home: const GalleryPage(),
);
}
}