Methods

Methods

  • Return to the home page of an Eitri Shopping App, clearing the backstack in the process.

    const modules = await Eitri.modules();
    const goHome = modules?.appState?.goHome;
    if (!goHome) return;
    await goHome()

    Returns Promise<undefined>