wheel_picker 0.0.4 copy "wheel_picker: ^0.0.4" to clipboard
wheel_picker: ^0.0.4 copied to clipboard

A value/time picking widget using input wheels. Customizable and light weight.

Wheel Picker #

A superset version of original ListWheelScrollView for easily creating wheel scroll input.

Flutter Pub

Left Gif Right Gif

Key Features #

  • Item Selection: Retrieve the selected item index effortlessly.
  • Highlight Selection: Highlight selected items with a color shader.
  • Tap Navigation: Enable tap scrolls.
  • Horizontal Scroll Direction: Horizontal wheel scroll view.
  • Styling Flexibility: Customize wheel appearance with WheelPickerStyle.
  • Precise Control: Manage and synchronize WheelPicker widgets with a WheelPickerController.
  • Mounting Controllers: Easily integrate and shift multiple controllers.

Installing #

Add it to your pubspec.yaml file:

dependencies:
  wheel_picker: ^0.0.4

Install packages from the command line:

flutter packages get

Usage #

To use package, just import package import 'package:wheel_picker/wheel_picker.dart';

Example #

Basic (Left Gif) #

For more controller you can attach a controller and adjust it to your liking:

import 'dart:async';

import 'package:flutter/material.dart';
import 'package:wheel_picker/wheel_picker.dart';

class WheelPickerExample extends StatelessWidget {
  const WheelPickerExample({super.key});

  @override
  Widget build(BuildContext context) {
    final secondsWheel = WheelPickerController(itemCount: 10);
    const textStyle = TextStyle(fontSize: 32.0, height: 1.5);

    Timer.periodic(const Duration(seconds: 1), (_) => secondsWheel.shiftDown());

    return WheelPicker(
      builder: (context, index) => Text("$index", style: textStyle),
      controller: secondsWheel,
      selectedIndexColor: Colors.blue,
      onIndexChanged: (index) {
        print("On index $index");
      },
      style: WheelPickerStyle(
        height: 300,
        itemExtent: textStyle.fontSize! * textStyle.height!, // Text height
        squeeze: 1.25,
        diameterRatio: .8,
        surroundingOpacity: .25,
        magnification: 1.2,
      ),
    );
  }
}

class MyApp extends StatelessWidget {
  const MyApp({super.key});

  @override
  Widget build(BuildContext context) {
    return const MaterialApp(
      title: 'Flutter Example',
      home: Scaffold(
        body: Center(
          child: WheelPickerExample(),
        ),
      ),
    );
  }
}

void main() => runApp(const MyApp());

Note: This works for this short example but don't forget to dispose controllers you initialize youself.

Advanced (Right Gif) #

For more control, you can also mount controllers, making them shift each other. See example.



Feel free to share your feedback, suggestions, or contribute to this package 🤝.

If you like this package, consider supporting it by giving it a star on GitHub and a like on pub.dev ❤️.

12
likes
140
pub points
89%
popularity

Publisher

verified publisherstavgafny.com

A value/time picking widget using input wheels. Customizable and light weight.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter

More

Packages that depend on wheel_picker