scroll_date_picker 2.0.2 copy "scroll_date_picker: ^2.0.2" to clipboard
scroll_date_picker: ^2.0.2 copied to clipboard

outdated

A customizable and easy-to-use date picker library for Flutter. Compatible with Android & iOS & Web.

example/lib/main.dart

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

void main() {
  runApp(MaterialApp(home: MyApp()));
}

class MyApp extends StatefulWidget {
  @override
  _MyAppState createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {
  late FixedExtentScrollController _yearController;
  late FixedExtentScrollController _monthController;
  late FixedExtentScrollController _dayController;

  DateTime _selectedDate = DateTime.now();

  int _minimumYear = 2010;
  int _maximumYear = 2050;

  @override
  void initState() {
    super.initState();

    _yearController = FixedExtentScrollController(
        initialItem: _selectedDate.year - _minimumYear);
    _monthController =
        FixedExtentScrollController(initialItem: _selectedDate.month - 1);
    _dayController =
        FixedExtentScrollController(initialItem: _selectedDate.day - 1);
  }

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: Text("Scroll Date Picker Example"),
        centerTitle: true,
      ),
      body: Column(
        children: [
          Container(
            height: 150.0,
            alignment: Alignment.center,
            child: Text(
              "$_selectedDate",
              style: TextStyle(fontSize: 20.0, fontWeight: FontWeight.w500),
            ),
          ),
          ScrollDatePicker(
            yearController: _yearController,
            monthController: _monthController,
            dayController: _dayController,
            itemExtent: 45.0,
            minimumYear: _minimumYear,
            maximumYear: _maximumYear,
            initialDateTime: _selectedDate,
            isLoop: false,
            locale: DatePickerLocale.ko_kr,
            selectedBoxDecoration: BoxDecoration(
                border: Border.all(color: Colors.blueAccent, width: 2.0)),
            onChanged: (value) {
              setState(() {
                _selectedDate = value;
              });
            },
          ),
        ],
      ),
    );
  }
}
113
likes
0
pub points
96%
popularity

Publisher

unverified uploader

A customizable and easy-to-use date picker library for Flutter. Compatible with Android & iOS & Web.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter

More

Packages that depend on scroll_date_picker