rounded_dialogs 0.0.1 copy "rounded_dialogs: ^0.0.1" to clipboard
rounded_dialogs: ^0.0.1 copied to clipboard

outdated

Package that provides easy access to rounded dialogs.

example/main.dart

import 'package:flutter/material.dart';
import 'package:rounded_dialogs/rounded_dialogs.dart';

void main() {
  runApp(MyApp());
}

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        body: Container(
          alignment: Alignment.center,
          child: ElevatedButton(
            child: Text('Show Dialog'),
            onPressed: () {
              ShowRoundedDialog(
                      child: Center(child: Text('Congrats!!!')),
                      height: 200,
                      width: 250)
                  .showCustomDialog(context);
            },
          ),
        ),
      ),
    );
  }
}
3
likes
0
points
10
downloads

Publisher

unverified uploader

Weekly Downloads

Package that provides easy access to rounded dialogs.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter

More

Packages that depend on rounded_dialogs