The corner mark
Every board shows a small “Quickdraw” mark in the bottom-right corner. It links to tryquickdraw.com , stays quiet until hovered, and follows the board’s theme.
Why it exists
It’s how people find the project. Quickdraw has no license fees and no paid tiers — boards in the wild pointing back home are what keeps an MIT-licensed SDK growing. Leaving it on is the easiest way to support the project.
Turning it off
It’s a boolean, not a purchase:
<Quickdraw watermark={false} />// plain JS
createQuickdraw({ container, watermark: false })// React Native
<Quickdraw watermark={false} />That’s the whole procedure. No license key, no email, no tier.
Behavior details
- The mark stays visible when the toolbar is hidden (
hideUi) — hosts building custom chrome still credit the engine unless they opt out. - It never appears in PNG exports; it’s interface, not document.
- In React,
watermarkis read at mount time.