Rubin Raithel

Results 44 comments of Rubin Raithel

@manojSimfrom Thanks for your clarification. We can use `_shouldExcludeActivityType` because it is a function that has to return a `bool` whether the specific action should be excluded. By only returning...

I would have to test that. I read somewhere that that API is not included in the newest iOS versions but would have to check. The reality is that Android...

Hi there, the `raw` property of `ShareResult` is of type `String` which is not nullable. Do you really get `null` or `'null'`? PS: sorry for only spotting this now

Hi there, are you really seeing `ShareResult.raw == null`? The definition of the raw property is as follows: ```dart final String raw; ``` The dart null safety guarantees that the...

I am currently very short on time but will probably find some at the end of the month. When I last tried this I wasn’t able to reproduce this. Would...

If you implement the feature for `shareFiles` please also implement it for `shareFilesWithResult` :)

Hi there, we need to pass the OS paths on the plugin side, which is why we only accept paths on the dart side. Is it unfeasible to write your...

I see, sadly `share_plus` does not support sharing files on web at all. Sharing is mainly concept mainly focused on mobile devices. Maybe allow your users to download your content...

> @miquelbeltran `shareWithResult` only returns user's action with the share-sheet. While what I am looking for is the method(app) that user has selected for sharing. Although thank you for this....