reveal_on_scroll 0.0.3 copy "reveal_on_scroll: ^0.0.3" to clipboard
reveal_on_scroll: ^0.0.3 copied to clipboard

A Flutter library for easily animating widget as they enter/leave the viewport.

example/lib/main.dart

import 'package:example/example_view.dart';
import 'package:flutter/material.dart';

void main() {
  runApp(const MyApp());
}

class MyApp extends StatelessWidget {
  const MyApp({super.key});

  // This widget is the root of your application.
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Reveal on Scroll ',
      debugShowCheckedModeBanner: false,
      theme: ThemeData(
        primarySwatch: Colors.blue,
      ),
      home: const SimpleWidget(),
    );
  }
}
53
likes
110
pub points
70%
popularity

Publisher

verified publisherrexthedev.blogspot.com

A Flutter library for easily animating widget as they enter/leave the viewport.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

animate_do, flutter

More

Packages that depend on reveal_on_scroll