⚠️ Mixin UI is currently in alpha stage
Documentation
Customization
Services

Toaster

A service that allows to display animated notifications on the page with flexible settings such as position, duration, ARIA attributes, and more.

Import

export { XToaster } from '@mixin-ui/kit';

Usage

@Component({ ... })
export class Usage {
  readonly #toaster = inject(XToaster);

  open() {
    this.#toaster.open('I love Mixin! ❤️');
  }
}
Previous
Theme
Next
Map