awesome_custom_dialog 1.2.0
awesome_custom_dialog: ^1.2.0 copied to clipboard
Awesome flutter dialog makes easy to add custom dialogs inside application
example/lib/main.dart
library awesome_custom_dialog_example;
import 'package:flutter/material.dart';
import 'home_screen.dart';
void main() => runApp(const MyApp());
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
debugShowCheckedModeBanner: false,
title: 'Awesome Custom Dialog',
theme: ThemeData(
colorScheme: ColorScheme.fromSeed(
seedColor: Colors.teal,
brightness: Brightness.light,
),
useMaterial3: true,
cardTheme: CardThemeData(
elevation: 0,
shape:
RoundedRectangleBorder(borderRadius: BorderRadius.circular(16)),
color: Colors.teal.withValues(alpha: 0.05),
),
),
home: const HomeScreen(),
);
}
}