Open native device sharing sheets for URLs and text.
Nativine intercepts sharing actions to invoke native Android/iOS share menus, passing strings and links directly to other installed mobile apps:
Create a hyperlink passing text and url parameters:
<a href="nativine://share?text=Checkout+this+site&url=https://mysite.com">Share App</a>
Call the share API wrapper programmatically:
if (window.Nativine) {
window.Nativine.share("Checkout this site", "https://mysite.com");
}