custom_animated_dialog 0.0.1
custom_animated_dialog: ^0.0.1 copied to clipboard
With this package you can display animated alert dialogs and take actions
example/lib/main.dart
import 'package:flutter/material.dart';
import 'home_page.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
return const MaterialApp(
debugShowCheckedModeBanner: false,
title: 'Animated Dialog',
home: MyHomePage(),
);
}
}