flutterdartflutter-dependencies

Share data between two Flutter apps in same mobile


I want to share data between two Flutter apps without share package that share data between apps when user select installed application, I want to send data to one app and fetch that data from the second application. How can I achieve this in Flutter?


Solution

  • I achieved required functionality by using Content Providers of android and call them natively in flutter using method channels. Now its working fine as I want to achieve.

    you can learn more about Content Providers by visiting this link.

    Note: I only want to achieve this for android not iOS.