Services Toaster
A service that allows to display animated notifications on the page with flexible settings such as position, duration, ARIA attributes, and more.
export { XToaster } from '@mixin-ui/kit';
@Component({ ... })
export class Usage {
readonly #toaster = inject(XToaster);
open() {
this.#toaster.open('I love Mixin! ❤️');
}
}