horizontal_center_date_picker 2.1.1 copy "horizontal_center_date_picker: ^2.1.1" to clipboard
horizontal_center_date_picker: ^2.1.1 copied to clipboard

A flutter widget provides a horizontal date picker and always aligns selected date in center.

horizontal_center_date_picker #

pub package

A flutter widget provides a horizontal date picker and always aligns selected date in center of the widget.

Usage #

This shows Widget's full customizations:

HorizontalDatePickerWidget({
    required this.startDate,
    required this.endDate,
    required this.selectedDate,
    required this.widgetWidth,
    required this.datePickerController,
    this.dateItemComponentList = const <DateItem>[
      DateItem.Month,
      DateItem.Day,
      DateItem.WeekDay
    ],
    String? locale,
    this.width = 60,
    this.height = 80,
    this.onValueSelected,
    this.normalColor = Colors.white,
    this.selectedColor = Colors.black,
    this.disabledColor = Colors.white,
    this.normalTextColor = Colors.black,
    this.selectedTextColor = Colors.white,
    this.disabledTextColor = const Color(0xFFBDBDBD),
    this.monthFontSize = 12,
    this.dayFontSize = 18,
    this.weekDayFontSize = 12,
  })
  1. startDate and endDate are required to control the valid date range.
  2. selectedDate is to indicate the default selected date.
  3. widgetWidth is the whole widget width
  4. width and height is the size of each date option item widget.
  5. dateItemComponentList is to indicate the date item label to show and the sequence of each label from top to bottom.
  6. locale is the available locale for date formatting. It allows null for using the system default one. Information can be found on https://api.flutter.dev/flutter/date_symbol_data_http_request/availableLocalesForDateFormatting.html
  7. onValueSelected is the callback function when user selected a new date.
  8. normalColor, selectedColor and disabledColor are the background color of each date option item widget background.
  9. normalTextColor, selectedTextColor and disabledTextColor are the background color of each date option item widget font color.
  10. monthFontSize, dayFontSize and weekDayFontSize are the fontsize of the date item label.

Example #

import 'package:flutter/material.dart';
import 'package:horizontal_center_date_picker/datepicker_controller.dart';
import 'package:horizontal_center_date_picker/horizontal_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: TestPage(),
    );
  }
}

class TestPage extends StatefulWidget {
  @override
  _TestPageState createState() => _TestPageState();
}

class _TestPageState extends State<TestPage> {
  DatePickerController _datePickerController = DatePickerController();

  @override
  Widget build(BuildContext context) {
    var now = DateTime.now();
    DateTime startDate = now.subtract(Duration(days: 14));
    DateTime endDate = now.add(Duration(days: 7));
    print('startDate = $startDate ; endDate = $endDate');
    return Container(
      color: Colors.grey,
      alignment: Alignment.center,
      child: HorizontalDatePickerWidget(
        locale: 'ja_JP',
        startDate: startDate,
        endDate: endDate,
        selectedDate: now,
        widgetWidth: MediaQuery.of(context).size.width,
        datePickerController: _datePickerController,
        onValueSelected: (date) {
          print('selected = ${date.toIso8601String()}');
        },
      ),
    );
  }
}

License #

MIT

20
likes
130
pub points
86%
popularity

Publisher

unverified uploader

A flutter widget provides a horizontal date picker and always aligns selected date in center.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter, intl

More

Packages that depend on horizontal_center_date_picker