1. Utilities
  2. showNotification

Utilities

showNotification

The Web Notification interface that display desktop notifications to the user.

Demo

Notified

Usage

        <script>
  import { showNotification } from "sveltronics";

  let title = "Svelte-Hack";
  let body = "Learn by doing";
</script>

<button
  on:click={() => showNotification(title, body)}
>
  notified
</button>