deeplinkv1.3

deeplink module

Deep links, external URLs, and in-app navigation.

Available Methods

sdk.deeplink.openUrl()
sdk.deeplink.back()
sdk.deeplink.close()
sdk.deeplink.navigate()

Example Usage

import { usePoremi } from '@poremi/react-sdk';

function DeeplinkExample() {
  const { sdk } = usePoremi();

  const openExternal = async () => {
    await sdk.deeplink.openUrl('https://example.com');
  };
}

Try in Playground

🔒 Log in to open this example in the interactive playground.