This document is meant to be provide answers to frequently asked questions about the tldraw developer SDK. For questions related to tldraw.com, please see our tldraw.com guides.
Need more help? See the docs for our guides, API reference, and examples. You can also join our Discord to chat with the team and other developers.
Want to help out? That's great! See the Contributing section at the very bottom of this document.
If you're new to tldraw, your first visit should be our quick start guide.
Create an issue on our GitHub using the Bug template.
Create an issue on our GitHub using the Feature Request template.
Yes. The SDK's main export (<Tldraw>
) is a regular React component. To render it in a different framework, you would use your framework's regular method of rendering React components. For example, in Vue you would use a Vue connector. In Angular, you would use an Angular wrapper component.
Use the Tldraw
component's onMount
callback. See this example for more about using the editor API.
<Tldraw
onMount={(editor) => {
editor.selectAll()
}}
/>
Color theme preferences are stored in the user object. To change the theme at runtime, update the user preferences:
editor.user.updateUserPreferences({ colorScheme: 'dark' })
editor.user.updateUserPreferences({ colorScheme: 'light' })
editor.user.updateUserPreferences({ colorScheme: 'system' })
You can use the Editor
API.
Want to help with this document? Great! We welcome contributions that add new questions or improve existing answers. You can quickly edit the page here—or you can clone the repository, edit this file, and submit a Pull Reqeust.
Some tips:
- keep answers simple (English is a second language to many readers)
- include short code examples if you can
- provide links to relevant docs, examples, or files
You can use the example format below:
Example answer. Link.
// Code example
editor.showCodeExample()