From 36ffbc13347477863fa491db50b3df9b2075cc4a Mon Sep 17 00:00:00 2001 From: Ardeshir Nahavandi Fard <68429735+Vonarian@users.noreply.github.com> Date: Mon, 1 Dec 2025 19:09:44 +0330 Subject: [PATCH 1/5] Fix formatting for permissions alerts section --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 09bccce..c768ae9 100644 --- a/README.md +++ b/README.md @@ -236,7 +236,7 @@ Future closeIncomingCall( } ``` -Pass in your own dialog UI for permissions alerts +Pass in your own dialog UI for permissions alerts: ````dart showAlertDialog: () async { From 78668eb0530a4b048eae5e44a7a9a728474a38ea Mon Sep 17 00:00:00 2001 From: Ardeshir Nahavandi Fard <68429735+Vonarian@users.noreply.github.com> Date: Mon, 1 Dec 2025 19:11:55 +0330 Subject: [PATCH 2/5] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c768ae9..df78116 100644 --- a/README.md +++ b/README.md @@ -264,7 +264,7 @@ showAlertDialog: () async { }, ) ?? false; - }, + } ``` From 874a45c0d583796adfd8a88ca382e70b29d5e993 Mon Sep 17 00:00:00 2001 From: Ardeshir Nahavandi Fard <68429735+Vonarian@users.noreply.github.com> Date: Mon, 1 Dec 2025 19:12:09 +0330 Subject: [PATCH 3/5] Update README.md --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index df78116..55b8e25 100644 --- a/README.md +++ b/README.md @@ -264,7 +264,8 @@ showAlertDialog: () async { }, ) ?? false; - } + }, + ``` From 1efa7d7ef18f55aca651fbd419d6576ea78e614f Mon Sep 17 00:00:00 2001 From: Ardeshir Nahavandi Fard <68429735+Vonarian@users.noreply.github.com> Date: Mon, 1 Dec 2025 19:13:55 +0330 Subject: [PATCH 4/5] Clean up README.md formatting Remove unnecessary whitespace and fix formatting in README. --- README.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/README.md b/README.md index 55b8e25..7fed3c4 100644 --- a/README.md +++ b/README.md @@ -265,7 +265,6 @@ showAlertDialog: () async { ) ?? false; }, - ``` @@ -285,4 +284,3 @@ Even in this scenario, the `backToForeground()` method will open the app and you ## push test tool Please refer to the [Push Toolkit](/tools/) to test callkeep offline push. -```` From cc4c47dc36e1f216bcce820bc928877a8a40947a Mon Sep 17 00:00:00 2001 From: Ardeshir Nahavandi Fard <68429735+Vonarian@users.noreply.github.com> Date: Mon, 1 Dec 2025 19:14:34 +0330 Subject: [PATCH 5/5] Fix formatting for Dart code block in README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 7fed3c4..11f8795 100644 --- a/README.md +++ b/README.md @@ -238,7 +238,7 @@ Future closeIncomingCall( Pass in your own dialog UI for permissions alerts: -````dart +```dart showAlertDialog: () async { final BuildContext context = navigatorKey.currentContext!;