Toast

The `ToastComponent is an Angular component designed to display toast notifications. Toast notifications are non-blocking pop-up messages that inform users about the result of their actions.

Usage

The component is typically used indirectly by being instantiated within the application or component where toast notifications need to be displayed. It communicates with the `ToastService to receive and display toast notifications.

<base-toast position="top-right"></base-toast>

Styling

The component's styling is managed through the associated SCSS file (toast.component.scss). Adjustments to the appearance of toasts and the container can be made by modifying the styles in this file.

Notes

  • Toast notifications are a user-friendly way to provide feedback on user actions or system status.
  • Customize the appearance and behavior of toasts by adjusting the component's input properties.
  • Ensure that Bootstrap styles are available for consistent styling.

For more detailed information, refer to the inline code comments in the source files.

Table of Contents