dss_cupertino_date_picker 1.0.0 copy "dss_cupertino_date_picker: ^1.0.0" to clipboard
dss_cupertino_date_picker: ^1.0.0 copied to clipboard

Customizable cupertino date picker.

Cupertino Date Picker #

Pub.dev Badge Flutter Platform Badge

Highly customizable cupertino date picker

Usage #

  SizedBox(
    height: 300,
    child: CupertinoDatePicker(
      itemExtent: 50,
      minDate: _minDate,
      maxDate: _maxDate,
      selectedDate: _selectedDate,
      selectionOverlay: Container(
        width: double.infinity,
        height: 50,
        decoration: const BoxDecoration(
          border: Border.symmetric(
            horizontal: BorderSide(color: Colors.grey, width: 1),
          ),
        ),
      ),
      selectedStyle: const TextStyle(
        color: Colors.black,
        fontWeight: FontWeight.w600,
        fontSize: 24,
      ),
      unselectedStyle: TextStyle(
        color: Colors.grey[800],
        fontSize: 18,
      ),
      disabledStyle: TextStyle(
        color: Colors.grey[400],
        fontSize: 18,
      ),
      onSelectedItemChanged: (date) => _selectedDate = date,
    ),
  ),

License #

MIT

1
likes
110
points
61
downloads

Publisher

unverified uploader

Weekly Downloads

Customizable cupertino date picker.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

flutter

More

Packages that depend on dss_cupertino_date_picker