rounded_dialogs 0.0.4 copy "rounded_dialogs: ^0.0.4" to clipboard
rounded_dialogs: ^0.0.4 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: () {
              myRoundedDialogBox(
                context: context,
                child: Text("Hello"),
                height: 200,
                width: 200,
                curveRadius: 20,
              );
            },
          ),
        ),
      ),
    );
  }
}
3
likes
140
points
15
downloads

Publisher

unverified uploader

Weekly Downloads

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