Native Share Dialogs for Android™ & iOS™ for Unity™You can fast and easily show native share dialogs with your plain text or URL. You can share the text and the URL on Social Media and more services of your choice.We hope the asset will save you lots of time and energy and you can focus on game/application development.### Features- native sharing for your text and url- easy to use and implement without any modification- source code included- no dependencies- error safe handling- well-tested code- sample demo scene- no extra permissions or SDKs required### How to useIn your button click event or listener copy this lines and change title and text:using (NativeShareDialog dialog = new NativeShareDialog()){NativeShareParams conf = new NativeShareParams(){//Url = "www.example.com/facebook-messenger",Title = "TITLE",Text = "<> \n www.example.com/facebook-messenger",PackageName = "com.facebook.orca"};dialog.ShowNativeShareDialogAsync(conf);}