> Portal Navigation: > > - Append `.md` to any URL under `https://dev.wix.com/docs/` to get its markdown version. > - Pages are either content pages (article or reference text) or menu pages (a list of links to child pages). > - To get a menu page, truncate any URL to a parent path and append `.md` (e.g. `https://dev.wix.com/docs/sdk.md`, `https://dev.wix.com/docs/sdk/core-modules.md`). > - Top-level index of all portals: https://dev.wix.com/docs/llms.txt > - Full concatenated docs: https://dev.wix.com/docs/llms-full.txt # Method name: toScreen(screenId: string, data: object) # Method package: wixNavigateMobile # Method menu location: wixNavigateMobile --> toScreen # Method Link: https://dev.wix.com/docs/velo/apis/wix-navigate-mobile/to-screen.md # Method Description: Opens the specified screen. ![developer preview tag](https://user-images.githubusercontent.com/89579857/213133550-2b4fa3e8-e8fc-4513-a733-00abcc70925c.png) `toScreen()` returns a promise that resolves when the opened screen closes. Learn more about [stack navigation](https://dev.wix.com/docs/velo/apis/wix-navigate-mobile/introduction.md#apis_wix-navigate-mobile_stack-navigation). # Method Code Examples: *** Note: do not assume any prop names or enum values other than the ones in the example. ## Open a feedback screen ```javascript import wixNavigateMobile from 'wix-navigate-mobile'; import { getFeedbackCategories } from './feedbackCategories' const screenToNavigateTo = "feedback"; const feedbackData = getFeedbackCategories(); wixNavigateMobile.toScreen(screenToNavigateTo, feedbackData) .then((result) => { if (result.error && result.error !== "") { console.error(result.error); } console.log('Data from feedback screen:', result.data); }); ``` ---