datetimelist 0.0.1 copy "datetimelist: ^0.0.1" to clipboard
datetimelist: ^0.0.1 copied to clipboard

Animated Date & Time Horizontal List

Platform Support | Android | iOS | | :-----: | :-: | | ✔️ | ✔️ #

Features #

Flutter Date Picker Library that provides a calendar as a horizontal timeline.

Imports #


 import 'package:datetimelist/date_picker_timeline.dart';
 

Usage #


  DatePicker(
        DateTime.now(),
        initialSelectedDate: DateTime.now(),
        selectionColor: Colors.black,
        selectedTextColor: Colors.white,
        onDateChange: (date) {
          // New date selected
          setState(() {
            _selectedValue = date;
          });
        },
      ),
 

Constructor #

DatePicker(
    this.startDate, {
    Key key,
    this.width,
    this.height,
    this.controller,
    this.monthTextStyle,
    this.dayTextStyle,
    this.dateTextStyle,
    this.selectedTextColor,
    this.selectionColor,
    this.deactivatedColor,
    this.initialSelectedDate,
    this.activeDates,
    this.inactiveDates,
    this.daysCount,
    this.onDateChange,
    this.locale = "en_US",
}) : super(key: key);

1
likes
110
points
19
downloads

Publisher

unverified uploader

Weekly Downloads

Animated Date & Time Horizontal List

Repository (GitHub)
View/report issues

Documentation

API reference

License

unknown (license)

Dependencies

flutter, intl

More

Packages that depend on datetimelist