receive_sharing_intent icon indicating copy to clipboard operation
receive_sharing_intent copied to clipboard

how to supress prevent comment text message popup and directly send selected media to the app like ios Whatsapp does

Open fullflash opened this issue 7 months ago • 4 comments

Image

how to supress prevent comment text message popup and directly send selected media to the app like ios Whatsapp does? without the last part in the screenshot above. seems like it is not possible using SLComposeServiceViewController need to implement custom viewcontroller. any one can achive this or alternative plugin ? thanks

fullflash avatar May 23 '25 11:05 fullflash

import UIKit import Social import receive_sharing_intent

class ShareViewController: RSIShareViewController {

// Use this method to return false if you don't want to redirect to host app automatically.
   // Default is true
   override func shouldAutoRedirect() -> Bool {
       return true
   }

}

syedazaz-funsol avatar May 29 '25 04:05 syedazaz-funsol

import UIKit import Social import receive_sharing_intent

class ShareViewController: RSIShareViewController {

// Use this method to return false if you don't want to redirect to host app automatically.
   // Default is true
   override func shouldAutoRedirect() -> Bool {
       return true
   }

}

the question was to prevent showing comment popup after gallery selection

fullflash avatar Jul 01 '25 09:07 fullflash

Same issue showing comment popup after selecting file

Image

Mohit-Nexever avatar Aug 12 '25 06:08 Mohit-Nexever

we did custom solution extending directly UIViewController cause original plugin extends from SLComposeServiceViewController which has this message dialog.

fullflash avatar Aug 13 '25 03:08 fullflash