Skip to content

Chindala-Pavan/pavan_timeline

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Language: English

PavanTimeline

Pub support

TimelineTile

A package to help build process timeline in vertical.


Example

  • You can access the example project for a Timeline Showcase.

Some use cases:


Vertical Timelines

Getting Started

A Timeline consists in a group of TimelineTiles. To build a tile you can simply use:

PavanTimeline();

Which will build a tile with a vertical axis, that aligns to the start, with a height of 100:

Simple Timeline

The axis can be switched to render an horizontal tile, aligned to the start, with a default width of 100:

PavanTimeline(
started: true,
ended: false,
reached: 2,
children: []
)

##Sample

PavanTimeline(
      started: true,
      ended: false,
      reached: 2,
      children: [
        Container(color: Colors.indigo,height: 30,width: 100,),
        Container(color: Colors.indigo,height: 30,width: 100,),
        Container(color: Colors.indigo,height: 30,width: 100,),
        Container(color: Colors.indigo,height: 30,width: 100,),
        Container(color: Colors.indigo,height: 30,width: 100,)
      ],
  );

See the implementation here

Releases

No releases published

Packages

No packages published

Languages