Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Markwhen | 3,179 | 8 months ago | 50 | mit | HTML | |||||
Make a cascading timeline from markdown-like text. Supports simple American/European date styles, ISO8601, images, links, locations, and more. | ||||||||||
Gantt Schedule Timeline Calendar | 2,520 | 6 | 2 months ago | 465 | September 21, 2023 | 17 | other | TypeScript | ||
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 Timeline | 1,796 | 44 | 29 | 3 months ago | 133 | May 30, 2022 | 240 | mit | JavaScript | |
A modern and responsive react timeline component. | ||||||||||
Timeline.api.fossasia.net | 1,114 | 8 years ago | 1 | cc0-1.0 | JavaScript | |||||
Period | 710 | 45 | 19 | 6 days ago | 42 | November 28, 2023 | mit | PHP | ||
PHP's time range API | ||||||||||
React Timeline Gantt | 507 | 1 | 2 | a month ago | 32 | March 01, 2020 | 45 | mit | JavaScript | |
A react Timeline component with virtual rendering | ||||||||||
Kvkcalendar | 452 | 1 | 2 months ago | 65 | October 11, 2023 | 13 | mit | Swift | ||
A most fully customization calendar for Apple platforms 📅 | ||||||||||
React Timeline 9000 | 264 | 2 | 5 months ago | 26 | July 10, 2022 | 29 | mit | JavaScript | ||
React Timeline | ||||||||||
Datepickertimelineflutter | 240 | 1 | 6 months ago | 1 | July 24, 2022 | 34 | apache-2.0 | Dart | ||
Flutter Date Picker Library that provides a calendar as a horizontal timeline | ||||||||||
Calendar.js | 234 | 6 days ago | 72 | November 27, 2023 | mit | JavaScript | ||||
📅 A javascript drag & drop event calendar, that is fully responsive and compatible with all modern browsers. |
Flutter Date Picker Library that provides a calendar as a horizontal timeline.
Import the following package in your dart file
import 'package:date_picker_timeline/date_picker_timeline.dart';
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;
});
},
),
],
)
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);