confirm_dialog

Creator: coderz1093

Last updated:

Add to Cart

Description:

confirm dialog

Confirm Dialog #

Confirm Dialog Widget for Flutter(JS-LIKE).
https://pub.dev/packages/confirm_dialog
Installation #
Add pubspec.yaml #
dependencies:
confirm_dialog: ^1.0.3
copied to clipboard

Usage #
Basic #
import 'package:confirm_dialog/confirm_dialog.dart';
import 'package:flutter/material.dart';

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

class MyApp extends StatelessWidget {
const MyApp({Key? key}) : super(key: key);

@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Demo',
theme: ThemeData(
primarySwatch: Colors.blue,
),
home: const MyHomePage(title: 'Flutter Demo Home Page'),
);
}
}

class MyHomePage extends StatefulWidget {
const MyHomePage({Key? key, required this.title}) : super(key: key);

final String title;

@override
State<MyHomePage> createState() => _MyHomePageState();
}

class _MyHomePageState extends State<MyHomePage> {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text(widget.title),
),
body: Center(
child: TextButton(
child: const Text('Confirm Dialog'),
onPressed: () async {
if (await confirm(context)) {
return print('pressedOK');
}
return print('pressedCancel');
},
),
),
);
}
}
copied to clipboard
Custom Message #
import 'package:confirm_dialog/confirm_dialog.dart';
import 'package:flutter/material.dart';

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

class MyApp extends StatelessWidget {
const MyApp({Key? key}) : super(key: key);

@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Demo',
theme: ThemeData(
primarySwatch: Colors.blue,
),
home: const MyHomePage(title: 'Flutter Demo Home Page'),
);
}
}

class MyHomePage extends StatefulWidget {
const MyHomePage({Key? key, required this.title}) : super(key: key);

final String title;

@override
State<MyHomePage> createState() => _MyHomePageState();
}

class _MyHomePageState extends State<MyHomePage> {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text(widget.title),
),
body: Center(
child: TextButton(
child: const Text('Confirm Dialog'),
onPressed: () async {
if (await confirm(
context,
title: const Text('Confirm'),
content: const Text('Would you like to remove?'),
textOK: const Text('Yes'),
textCancel: const Text('No'),
)) {
return print('pressedOK');
}
return print('pressedCancel');
},
),
),
);
}
}
copied to clipboard

Recommend Libraries #

Prompt Dialog - Prompt Dialog Widget for Flutter(JS-LIKE).
Alert Dialog - Alert Dialog Widget for Flutter(JS-LIKE).
Currency Text Input Formatter - Currency Text Input Formatter for Flutter.

Maintainer #

Jehun Seem

License #
MIT

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Customer Reviews

There are no reviews.