intent icon indicating copy to clipboard operation
intent copied to clipboard

A simple Flutter plugin to deal with Android Intents, written with :heart:

Results 28 intent issues
Sort by recently updated
recently updated
newest added

how to get result in Flutter from android_intent.Intent()? I have code like below and how to get info when call will be disconnected? ``` android_intent.Intent() ..setAction(android_action.Action.ACTION_CALL) ..setData(Uri(scheme: "tel", path: 'phone...

Hello, I really appreciated this plugin and in fact it helped me a lot. Thank you very much in advance. However, I have problem with choosing sim slot programmatically. Is...

hi its possible to add contact with extra data and how its being done any exmaple

If you pass boolean or int for other Extras, it will just try to cast them to String which will result in an exception. Example for openning a calendar's add...

Hi! Thanks for a great plugin. I am using `android_intent.Intent() ..setAction(android_action.Action.ACTION_MAIN) ..addCategory(android_category.Category.CATEGORY_APP_GALLERY) ..startActivity().catchError((e) => print(e));` to bring up the Gallery. This works, but what I really want to do is...

Hi How can I send parameters like this? ( this is android native ) ``` Intent intent = new Intent("com.bpmellat.merchant"); intent.putExtra("PaymentData","{'param1':'value'}"); startActivityForResult(intent); ``` thanks in advance

Hi, please can you add setClassName method to your library? Regards, Massimo

Since this plugin supports ACTION_SEND_MULTIPLE action, it should be able to provide full functionality. There should be a way to share multiple objects like in Java/Kotlin: ` ArrayList imageUris =...