Close Docs

AppDelegate

Read-only delegate for app-level layout and theme values. This is useful in low-level modules (like animations) where you want access to layout metrics without holding a DiscoApp instance.

Usage

import { DiscoAppDelegate } from 'discoui';

const width = DiscoAppDelegate.width;
const height = DiscoAppDelegate.height;

API