reveal_on_scroll 0.0.3 reveal_on_scroll: ^0.0.3 copied to clipboard
A Flutter library for easily animating widget as they enter/leave the viewport.
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(),
);
}
}