Appo

Share

Open the native share sheet.

Access via appo.share.

Type Definition

Prop

Type

Usage

const result = await appo.share.open({
  title: 'Check this out',
  message: 'Content to share',
  url: 'https://example.com',
});

if (result.success) {
  console.log('Shared via:', result.action);
}

Prop

Type

Prop

Type

Browser Fallback

MethodFallback
open()Uses navigator.share if available, otherwise returns { success: false }

On this page