animated_scrollable_timeline 0.0.3
animated_scrollable_timeline: ^0.0.3 copied to clipboard
Flutter plugin which provides infinity scrollable timeline widget. It can be useful for implementing real-time streaming components as timeline for playing video.
example/lib/main.dart
import 'package:animated_scrollable_timeline/animated_scrollable_timeline.dart';
import 'package:flutter/material.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({
super.key,
});
@override
Widget build(BuildContext context) {
return MaterialApp(
title: "Painting example",
theme: ThemeData.light(useMaterial3: true),
darkTheme: ThemeData.dark(useMaterial3: true),
home: Scaffold(
appBar: AppBar(
title: const Text("Painting Example"),
),
body: Stack(
children: [
AnimatedScrollableTimelineWidget(
limitDateTime: () => DateTime.now(),
),
],
),
),
);
}
}