dynamic_timeline 0.1.0+1 copy "dynamic_timeline: ^0.1.0+1" to clipboard
dynamic_timeline: ^0.1.0+1 copied to clipboard

outdated

A widget to create daily timelines, timetables, gantt charts* and more.

style: very good analysis License: MIT

A widget to create daily timelines, timetables, gantt charts* and more.

Note: This package is in early stage and has not been tested with large amount of data.

Daily timeline #

Daily timeline

Weekly timetable #

Weekly timetable

Gantt chart #

Gantt chart

*Support to gantt chart must be improved.

Features #

  • Easy to use API.
  • Rezizable timeline items.
  • Custom label builder.

Usage #

Installation #

Add the following line to pubspec.yaml:

dependencies:
  dynamic_timeline: ^0.1.0

Basic set up #

Make sure to check out the example for more details.

Dynamic timeline requires you to provide firstDateTime, lastDateTime,labelBuilder and a list of children.

  • labelBuilder: Used to build the label of each mark, normally a dateFormat will be used.
  • children: The event of the timeline, use TimelineItem to position the widget according to its start and end date time.

Another important property is intervalDuration, that is the lenght of time between each mark.

Example of a daily timeline.

DynamicTimeline(
    firstDateTime: DateTime(1970, 1, 1, 7),
    lastDateTime: DateTime(1970, 1, 1, 22),
    labelBuilder: DateFormat('HH:mm').format,
    intervalDuration: const Duration(hours: 1),
    children: [
      TimelineItem(
        startDateTime: DateTime(1970, 1, 1, 7),
        endDateTime: DateTime(1970, 1, 1, 8),
        child: const Event(title: 'Event 1'),
      ),
      TimelineItem(
        startDateTime: DateTime(1970, 1, 1, 10),
        endDateTime: DateTime(1970, 1, 1, 12),
        child: const Event(title: 'Event 2'),
      ),
      TimelineItem(
        startDateTime: DateTime(1970, 1, 1, 15),
        endDateTime: DateTime(1970, 1, 1, 17),
        child: const Event(title: 'Event 3'),
      ),
    ],
),
39
likes
0
pub points
83%
popularity

Publisher

unverified uploader

A widget to create daily timelines, timetables, gantt charts* and more.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on dynamic_timeline