Datepickertimelineflutter

Flutter Date Picker Library that provides a calendar as a horizontal timeline
Alternatives To Datepickertimelineflutter
Project NameStarsDownloadsRepos Using ThisPackages Using ThisMost Recent CommitTotal ReleasesLatest ReleaseOpen IssuesLicenseLanguage
Markwhen3,179
8 months ago50mitHTML
Make a cascading timeline from markdown-like text. Supports simple American/European date styles, ISO8601, images, links, locations, and more.
Gantt Schedule Timeline Calendar2,52062 months ago465September 21, 202317otherTypeScript
Gantt Gantt Gantt Timeline Schedule Calendar [ javascript gantt, js gantt, projects gantt, timeline, scheduler, gantt timeline, reservation timeline, react gantt, angular gantt, vue gantt, svelte gantt, booking manager ]
React Calendar Timeline1,79644293 months ago133May 30, 2022240mitJavaScript
A modern and responsive react timeline component.
Timeline.api.fossasia.net1,114
8 years ago1cc0-1.0JavaScript
Period71045196 days ago42November 28, 2023mitPHP
PHP's time range API
React Timeline Gantt50712a month ago32March 01, 202045mitJavaScript
A react Timeline component with virtual rendering
Kvkcalendar452
12 months ago65October 11, 202313mitSwift
A most fully customization calendar for Apple platforms 📅
React Timeline 900026425 months ago26July 10, 202229mitJavaScript
React Timeline
Datepickertimelineflutter24016 months ago1July 24, 202234apache-2.0Dart
Flutter Date Picker Library that provides a calendar as a horizontal timeline
Calendar.js234
6 days ago72November 27, 2023mitJavaScript
📅 A javascript drag & drop event calendar, that is fully responsive and compatible with all modern browsers.
Alternatives To Datepickertimelineflutter
Select To Compare


Alternative Project Comparisons
Readme

DatePickerTimeline

Pub

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

How To Use

Import the following package in your dart file

import 'package:date_picker_timeline/date_picker_timeline.dart';

Usage

This version is breaking backwards compatibility

Use the DatePicker Widget

Column(
    mainAxisAlignment: MainAxisAlignment.center,
    children: <Widget>[
      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);

Author

Contributors

Popular Timeline Projects
Popular Calendar Projects
Popular User Interface Components Categories
Related Searches

Get A Weekly Email With Trending Projects For These Categories
No Spam. Unsubscribe easily at any time.
Dart
Flutter
Date
Calendar
Picker
Timeline
Datepicker
Dartlang
Picker Library