venenenela
venenenela

Reputation: 1

How to pass string from app to another in flutter?

I find this package called uni_links, it may help me,

I'm using deviceapps package to open my second app.

Thank you.

Upvotes: 0

Views: 881

Answers (1)

Darsh Shah
Darsh Shah

Reputation: 1666

Using this library, share_intent you can share the text with other apps. In order to receiver share intents, the other app must be built with receive_share_intent.

For example: You can use Share.share('check out my website https://example.com'); to share text with text sharing apps like WhatsApp.

Upvotes: 1

Related Questions