timeline_list

Creator: coderz1093

Last updated:

Add to Cart

Description:

timeline list

Flutter Timeline Widget #


Displays a scrollable timeline with custom child widgets and custom icons.

Installation #
In your pubspec.yaml file within your Flutter Project:
dependencies:
timeline_list: ^0.0.3
copied to clipboard
Features #

3 different timeline alignments. Left, Center, Right.
On demand child building with Timeline.builder.
Custom icon and icon size support (icon sizes supported only on centered timeline).

Usage #
import 'package:timeline_list/timeline.dart';
import 'package:timeline_list/timeline_model.dart';

List<TimelineModel> items = [
TimelineModel(Placeholder(),
position: TimelineItemPosition.random,
iconBackground: Colors.redAccent,
icon: Icon(Icons.blur_circular)),
TimelineModel(Placeholder(),
position: TimelineItemPosition.random,
iconBackground: Colors.redAccent,
icon: Icon(Icons.blur_circular)),
];
return Timeline(children: items, position: TimelinePosition.Center);
copied to clipboard
Example #
A sample timeline app can be found in the example/ folder.

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Customer Reviews

There are no reviews.