Skip to content

Custom labels

Latest
Compare
Choose a tag to compare
@neckaros neckaros released this 29 May 08:48
· 16 commits to master since this release

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,
            ),
          ),