showCometChatConfirmDialog(
context: context,
confirmButtonText: "yes",
cancelButtonText: "no",
messageText: "this is a message",
onCancel: () {
// Write on cancel function here
Navigator.pop(context);
},
style: ConfirmDialogStyle(
backgroundColor:Colors.lightBlue,
shadowColor: Colors.teal,
confirmButtonTextStyle:TextStyle(fontSize: 12, color: Colors.yellow),
cancelButtonTextStyle: TextStyle(fontSize: 12, color: Colors.pink)
onConfirm: () async {
// write on Confirm function here
Navigator.pop(context);
}
)
);