animated_scrollable_timeline 0.0.1 copy "animated_scrollable_timeline: ^0.0.1" to clipboard
animated_scrollable_timeline: ^0.0.1 copied to clipboard

outdated

Animated scrollable timeline.

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(),
            ),
          ],
        ),
      ),
    );
  }
}
12
likes
0
points
34
downloads

Publisher

unverified uploader

Weekly Downloads

Animated scrollable timeline.

Homepage
Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter, intl

More

Packages that depend on animated_scrollable_timeline