Notification

Display toast notifications to users.

Running this example

To run this example locally:

  1. If you haven't already, create a new app in the Developer Portalโ (opens in a new tab or window). For more information, refer to our Quickstart guide.

  2. In your app's configuration on the Developer Portalโ (opens in a new tab or window), ensure the "Development URL" is set to http://localhost:8080.

  3. Clone the starter kit:

    git clone https://github.com/canva-sdks/canva-apps-sdk-starter-kit.git
    cd canva-apps-sdk-starter-kit
    SHELL
  4. Install dependencies:

    npm install
    SHELL
  5. Run the example:

    npm run start notification
    SHELL
  6. Click the Preview URL link shown in the terminal to open the example in the Canva editor.

Example app source code

// For usage information, see the README.md file.
import { Button, Rows, Text } from "@canva/app-ui-kit";
import { notification } from "@canva/platform";
import * as styles from "styles/components.css";
export const App = () => {
const funMessages = [
"๐Ÿš€ Keep going, superstar!",
"๐Ÿ’ช You got this!",
"๐ŸŒŸ Shine bright!",
"๐Ÿ”ฅ Crushing it!",
"๐Ÿ† Winner vibes only!",
];
const handleClick = () => {
const randomMessage =
funMessages[Math.floor(Math.random() * funMessages.length)];
notification.addToast({
messageText: randomMessage,
});
};
return (
<div className={styles.scrollContainer}>
<Rows spacing="1u">
<Text>Apps can trigger notifications:</Text>
<Button variant="primary" onClick={handleClick}>
Show a fun toast notification ๐Ÿž
</Button>
</Rows>
</div>
);
};
TYPESCRIPT
import { AppUiProvider } from "@canva/app-ui-kit";
import { createRoot } from "react-dom/client";
import { App } from "./app";
import "@canva/app-ui-kit/styles.css";
const root = createRoot(document.getElementById("root") as Element);
function render() {
root.render(
<AppUiProvider>
<App />
</AppUiProvider>,
);
}
render();
if (module.hot) {
module.hot.accept("./app", render);
}
TYPESCRIPT
# Notification example
Demonstrates how to display toast notifications to users using the notification API.
For API reference docs and instructions on running this example, see: https://www.canva.dev/docs/apps/examples/notification/.
NOTE: This example differs from what is expected for public apps to pass a Canva review:
- Message content is hardcoded for demonstration purposes only. Production apps should provide user input interfaces or dynamic content loading
- Error handling is simplified for demonstration. Production apps must implement comprehensive error handling with clear user feedback and graceful failure modes
- Internationalization is not implemented. Production apps must support multiple languages using the `@canva/app-i18n-kit` package to pass Canva review requirements
MARKDOWN

API Reference

Need Help?