KasemJaffer / receive_sharing_intent

A Flutter plugin that enables flutter apps to receive sharing photos, text and url from other apps.
Apache License 2.0
321 stars 369 forks source link

Data shared in as string with different concatenating string depending on OS #265

Open keironwaites opened 9 months ago

keironwaites commented 9 months ago

Hi. When I share from iOS (from the share icon in Amazon) the data comes in a single text value in the format '[title],[url]'. When I share from Amazon in Android it comes in a single text value in the format '[title] [url]' (space vs comma). Is there a way to receive the data in object format? {url => [url], title => [title]} ? Thank you.