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

outdated

A Flutter Widget to make interactive timeline widget.

Bubble Timeline Package #

A Flutter Widget to make interactive timeline widget.

This widget can be used to make Event Timelines, or Timelines for certain travel journey. This widget provides easy customisation of individual event bubbles.

Screenshots #

Installing #

To use this package:

Add the following to your pubspec.yaml file:

dependencies:
    bubble_timeline:

How to Use #

Simply create a BubbleTimeline widget, and pass the required params:

 BubbleTimeline(
    bubbleDiameter: 120,
    // List of Timeline Bubble Items
    items: [
        TimelineItem(
            title: 'Boat',
            subtitle: 'Travel through Oceans',
            icon: Icon(
                Icons.directions_boat,
                color: Colors.white,
            ),
            bubbleColor: Colors.grey,
        ),
        TimelineItem(
            title: 'Bike',
            subtitle: 'Road Trips are best',
            icon: Icon(
                Icons.directions_bike,
                color: Colors.white,
            ),
            bubbleColor: Colors.grey,
        ),
        TimelineItem(
            title: 'Bus',
            subtitle: 'I like to go with friends',
            icon: Icon(
                Icons.directions_bus,
                color: Colors.white,
            ),
            bubbleColor: Colors.grey,
        ),
    ],
    stripColor: Colors.teal,
    scaffoldColor: Colors.white,
)        

Use TimelineItem to add items in Timeline.

TimelineItem(
    title: 'Title',
    subtitle: 'Subtitle',
    description: 'Description',
    icon: Icon(
        Icons.directions_bus,
    ),
    bubbleColor: Colors.blue,
),

LICENSE #

GNU GENERAL PUBLIC LICENSE 3.0

68
likes
0
pub points
48%
popularity

Publisher

verified publishervanshgoel.me

A Flutter Widget to make interactive timeline widget.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on bubble_timeline