mirror of
https://github.com/wailsapp/wails.git
synced 2025-05-02 05:30:22 +08:00
13 lines
233 B
JavaScript
13 lines
233 B
JavaScript
import {writable} from 'svelte/store';
|
|
|
|
/** Overlay */
|
|
export const overlayVisible = writable(false);
|
|
|
|
export function showOverlay() {
|
|
overlayVisible.set(true);
|
|
}
|
|
|
|
export function hideOverlay() {
|
|
overlayVisible.set(false);
|
|
}
|