scroll_date_picker 1.0.0 copy "scroll_date_picker: ^1.0.0" to clipboard
scroll_date_picker: ^1.0.0 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> {
  DateTime selectedDate = DateTime.now();

  @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(
            itemExtent: 45.0,
            minimumYear: 2010,
            maximumYear: 2050,
            initialDateTime: DateTime.parse("2020-05-01"),
            isLoop: false,
            locale: DatePickerLocale.en_us,
            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