delayed_display 1.0.1 delayed_display: ^1.0.1 copied to clipboard
A widget that enables you to display a child after a delay and with beautiful fading and sliding animation.
import 'package:flutter/material.dart';
import 'vertical_sliding_example.dart';
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
// This widget is the root of your application.
@override
Widget build(BuildContext context) {
return MaterialApp(
home: VerticalSlidingExample(),
);
}
}