Notification
If you need to display feedback to a user in-app you should use a banner notification. These are perfect for displaying unobtrusive messages at the top of the viewport, such as when a form error occurs or an action has been completed successfully.
Showing Banner Notifications
You can show banner notifications from anywhere in your application using the AppContext.
Preview

Code
// structure
context.banner.show(message, type, autoclose);
// example
context.banner.hide('Hello World!', 'success', true);
Parameters
Prop
Description
Required
Value
autoclose
determine if the notification disappears automatically
optional
boolean (default: false)
hasHeader
add padding if the header is visible
optional
boolean
text
message text
required
string
type
banner type
required
success, error or warning, info
Last updated
Was this helpful?