I am using Share API in React native as follows.
handleSharePress() {
Share.share({
message: `I scored ${this.score}% in React Quiz: https://play.google.com/store/apps/details?id=com.vijayt.reactquiz`
}, {
dialogTitle: 'Share my score'
});
}
The Share works fine in Android with Twitter. But with Facebook, I am not seeing the message text in the share.

