> 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: showInAppNotification(body: string, options: InAppNotificationOptions) # Method package: wixMobile # Method menu location: wixMobile --> AppFramework --> showInAppNotification # Method Link: https://dev.wix.com/docs/velo/apis/wix-mobile/app-framework/show-in-app-notification.md # Method Description: Displays an in-app notification. ![developer preview tag](https://user-images.githubusercontent.com/89579857/213133550-2b4fa3e8-e8fc-4513-a733-00abcc70925c.png) Use in-app notifications to provide real-time updates and alerts without interrupting the app user's experience. In-app notifications are displayed at the top of the app, and are often used to inform app users of new information. # Method Code Examples: *** Note: do not assume any prop names or enum values other than the ones in the example. ## Display an in-app notification ```javascript import { appFramework } from 'wix-mobile'; import { openSendWelcomeModal } from './sendWelcome' appFramework.showInAppNotification( '@newMember just joined your study group', { title: 'New community member', avatarImage: 'https://static.wixstatic.com/media/w8ide0_leac4pwk8o11v8725j9ugcbe70x3alc0~mv2.jpg' } ).then((res) => { if (res.result === "pressed") { openSendWelcomeModal(); } }).error((error) => { console.error(error); }); ``` ---