bubble_timeline 1.0.5 bubble_timeline: ^1.0.5 copied to clipboard
A Flutter Widget to make interactive timeline widget. This widget provides easy customisation of individual event bubbles.
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(),
);
}
}