awesome_custom_dialog 1.1.0 copy "awesome_custom_dialog: ^1.1.0" to clipboard
awesome_custom_dialog: ^1.1.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(),
    );
  }
}
1
likes
0
points
553
downloads

Publisher

verified publishertherivanta.com

Weekly Downloads

Awesome flutter dialog makes easy to add custom dialogs inside application

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter

More

Packages that depend on awesome_custom_dialog