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

outdated

A fully custom alert and dialog box showing messages after a form submit .

A fully custom alert and dialog box showing messages after a form submit. This widget can be used in form submit, login and payment forms.

Usage in a raised button on press
        RaisedButton(
                onPressed: () {
                    showDialog(
                    context: context,
                    builder: (context) => CustomDialog(
                        content: Text(
                        'Payment Successful',
                        style: TextStyle(
                            fontWeight: FontWeight.w900,
                            fontSize: 20.0,
                        ),
                        ),
                        title: Text('Health Insurance'),
                        firstColor: Color(0xFF3CCF57),
                        secondColor: Colors.white,
                        headerIcon: Icon(
                        Icons.check_circle_outline,
                        size: 120.0,
                        color: Colors.white,
                        ),
                    ),
                    );
                },
                child: Text('Press'),
                )
12
likes
40
pub points
61%
popularity

Publisher

unverified uploader

A fully custom alert and dialog box showing messages after a form submit .

Repository (GitHub)
View/report issues

License

MIT (LICENSE)

Dependencies

flutter

More

Packages that depend on custom_dialog