> 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: getScreenContext() # Method package: wixNavigateMobile # Method menu location: wixNavigateMobile --> getScreenContext # Method Link: https://dev.wix.com/docs/velo/apis/wix-navigate-mobile/get-screen-context.md # Method Description: Get's the screen's data. ![developer preview tag](https://user-images.githubusercontent.com/89579857/213133550-2b4fa3e8-e8fc-4513-a733-00abcc70925c.png) `getScreenContext()` returns the screen's data. This includes any data context passed into the screen on which the widget is placed, such as data defined when the screen is opened using `toScreen()`. # Method Code Examples: *** Note: do not assume any prop names or enum values other than the ones in the example. ## Get a screen's data ```javascript import wixNavigateMobile from 'wix-navigate-mobile'; wixNavigateMobile.getScreenContext() .then((result) => { console.log('Screen data from feedback screen:', result.data); }) .catch((error) => { console.error(error); }) ``` ---