SplashScreen
AppFull-screen overlay shown during app initialisation. Accepts a logo slot, optional progress bar, and fades out when visible=false.
Acme
Loading…Loading your workspace…
<SplashScreen
visible={true}
logo={<span className="text-4xl font-black text-primary">Acme</span>}
message="Loading your workspace…"
progress={65}
/>Loading…
Please wait…
<SplashScreen visible={true} message="Please wait…" />App content here
Acme
Loading…Starting up…
const [visible, setVisible] = useState(true);
<SplashScreen
visible={visible}
logo={<span className="text-4xl font-black text-primary">Acme</span>}
message="Starting up…"
/>
<Button onClick={() => setVisible(false)}>Dismiss</Button>