flutter_timeline 0.0.4+1 copy "flutter_timeline: ^0.0.4+1" to clipboard
flutter_timeline: ^0.0.4+1 copied to clipboard

outdated

a fully customizable & general timeline widget, based on real-world application references

flutter_timeline #

logo

a fully customizable & general timeline widget, based on real-world application references

  • ✅ fully customizable indicator dot
  • ✅ support spacing between indicator dot and lines
  • ✅ support spacing between event (items) but leaving the line connected
  • ✅ uses custom paint, but yet, indicator and body are fully customizable.
  • ✅ 2 real-world demos
  • ✅ L2R support
  • ✅ supported & used by enterprise, constantly updated, used on production application.

Installation #

dependencies:
  flutter_timeline: latest

usage #

  TimelineEventDisplay get plainEventDisplay {
    return TimelineEventDisplay(
        child: TimelineEventCard(
          title: Text("just now"),
          content: Text("someone commented on your timeline ${DateTime.now()}"),
        ),
        indicator: TimelineDots.of(context).circleIcon);
  }

  List<TimelineEventDisplay> events;

  Widget _buildTimeline() {
    return TimelineTheme(
        data: TimelineThemeData(lineColor: Colors.blueAccent),
        child: Timeline(
          indicatorSize: 56,
          events: events,
        ));
  }

  void _addEvent() {
    setState(() {
      events.add(plainEventDisplay);
    });
  }

references #

https://www.pinterest.com/official_softmarshmallow/flutter-timeline/

simple example #

demo app demo app demo app

more documentation available at github

135
likes
0
pub points
86%
popularity

Publisher

verified publishergrida.co

a fully customizable & general timeline widget, based on real-world application references

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter

More

Packages that depend on flutter_timeline