From ce9e7b418b7c790e2b6c1c16631f6156be442fce Mon Sep 17 00:00:00 2001 From: Harsh Bhikadia Date: Sun, 9 May 2021 12:27:25 +0530 Subject: [PATCH] docs(reame) minor: --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9dcee32..e242153 100644 --- a/README.md +++ b/README.md @@ -60,7 +60,7 @@ You need to add `` to `android/app/src/main/AndroidManifest.xml` ``` In this example we want to receive Intent with `action` matching `RECEIVE_INTENT_EXAMPLE_ACTION` literal. This `` should be added to the `Activity` that extends `FlutterActivity` (for project generated from template it is `MainActivity`). -To read more about "Intent and Intent Filter", encourage you to check [official docs](https://developer.android.com/guide/components/intents-filters) from Android. +`` describes, what `Intent` the `Activity` is capable to recevie. To read more about "Intent and Intent Filter", encourage you to check [official docs](https://developer.android.com/guide/components/intents-filters) from Android. #### Recevie and handle Intent that launched the Activity in Flutter Inside flutter code, you can call `ReceiveIntent.getInitialIntent()` to get the `Intent` that started the `Activity`: ```dart