react-native-branch-deep-linking-attribution
react-native-branch-deep-linking-attribution copied to clipboard
Customize android ShareSheetStyle and sharing channel
Is there any way to customize android share sheet style? Currently, it's bit cut off from both side. Would be nice to set it Full width. According to branch documentation, it's possible to set it to full width. But I don't know how to do it in react-native.
Also, is there any option to change the order of sharing channel?. I want to put "WhatsApp", "Instagram" on top of the list.
if it's not possible to customize, is there any way to use default sharing option in android?
Adding a feature request ticket for this.
You can do this with a combination of branchUniversalObject.generateShortUrl() to obtain a short link then Share to get the built-in Android modal.
You can do this with a combination of branchUniversalObject.generateShortUrl() to obtain a short link then Share to get the built-in Android modal.
This worked for me. Thanks!
Are you find the way how change the order of sharing channel? Even if use .addPreferredSharingOption(SharingHelper.SHARE_WITH.TWITTER)
right in java code,
it is not use real order, it just add app in the first screen but in own order
You can do this with a combination of branchUniversalObject.generateShortUrl() to obtain a short link then Share to get the built-in Android modal.
can you explain more pls?