simple_timeline 1.0.1 copy "simple_timeline: ^1.0.1" to clipboard
simple_timeline: ^1.0.1 copied to clipboard

A new Flutter project.

SimpleTimeline #

A flutter package that allows you to create basic timelines on your flutter application. This is customizable and easy to plugin to your application. You will find the following features:

  • A simple timeline with a title and a description
  • Customizable color options for - Line, Title, Description and Background
  • Tween animation on the line

Getting Started #

You will need to add the following dependency in your pubspec.yaml file to download the depedency.

dependencies:
  flutter:
    sdk: flutter
  simple_timeline: 1.0.1

Usage #

import 'package:simple_timeline/simple_timeline.dart';

   SimpleTimeLine(timelineList: [
            TimelineEntity(
                enable: true,
                description: "Lorem Ipsum",
                title: "Lorem Ipsum"),
            TimelineEntity(
                enable: true,
                description: "Lorem Ipsum",
                title: "Lorem Ipsum"),
            TimelineEntity(
                enable: true,
                description: "Lorem Ipsum",
                title: "Lorem Ipsum"),
            TimelineEntity(enable: false, title: "Lorem Ipsum"),
            TimelineEntity(
                enable: false,
                title: "Lorem Ipsum",
                description:
                'It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged.',
                disableColor: Colors.red)
          ]),

Contributing #

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

1
likes
70
pub points
9%
popularity

Publisher

unverified uploader

A new Flutter project.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter

More

Packages that depend on simple_timeline