Skip to content

Releases: neckaros/timeline_editor

Custom labels

29 May 08:48
Compare
Choose a tag to compare

Fix

Enhancements

  • You can now provide your custom time widget (Request 3):
TimelineEditor(
  timeWidgetExtent: 100,
  timeWidgetBuilder: (d, t) => Padding(
            padding: const EdgeInsets.only(left: 8.0),
            child: Text(
              '${d.inSeconds}/${t.inSeconds}',
              overflow: TextOverflow.ellipsis,
            ),
          ),