wheel_date_picker 0.0.2 copy "wheel_date_picker: ^0.0.2" to clipboard
wheel_date_picker: ^0.0.2 copied to clipboard

A wheel liked date picker with configurable colors and distance between steps.

example/lib/main.dart

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

void main() {
  runApp(MyApp());
}

class MyApp extends StatelessWidget {
  // This widget is the root of your application.
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter Demo',
      theme: ThemeData(
        primarySwatch: Colors.blue,
      ),
      home: Scaffold(
        body: SafeArea(
          child: Column(
            children: [
              WheelDatePickerSlider(
                onChanged: (_) {},
                initialDate: 0,
                config: PointerConfig(color: const Color(0xffcccad8)),
              ),
            ],
          ),
        ),
      ),
    );
  }
}
3
likes
120
pub points
16%
popularity

Publisher

verified publisherstackfinance.co

A wheel liked date picker with configurable colors and distance between steps.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter

More

Packages that depend on wheel_date_picker