interactive_slider_kit 0.1.1 copy "interactive_slider_kit: ^0.1.1" to clipboard
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.

example/lib/main.dart

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(),
    );
  }
}
2
likes
160
points
7
downloads

Documentation

Documentation
API reference

Publisher

unverified uploader

Weekly Downloads

Interactive Flutter sliders and dials: circular knobs, tier gauges, activity rings, bedtime pickers, studio meters, and category spin wheels — with themes, haptics, and callbacks.

Repository (GitHub)
View/report issues

Topics

#ui #widget #slider #animation #controls

License

MIT (license)

Dependencies

flutter

More

Packages that depend on interactive_slider_kit