bubble_timeline 1.0.2 bubble_timeline: ^1.0.2 copied to clipboard
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 ev [...]
import 'package:flutter/material.dart';
import './home_page.dart';
void main() {
runApp(MyApp());
}
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
home: HomePage(),
);
}
}