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

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
110
pub points
0%
popularity

Publisher

unverified uploader

Package that provides easy access to rounded dialogs.

Repository (GitHub)
View/report issues

Documentation

API reference

License

BSD-3-Clause (LICENSE)

Dependencies

flutter

More

Packages that depend on rounded_dialogs