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
334 stars 395 forks source link

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

Open keironwaites opened 1 year ago

keironwaites commented 1 year 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.