Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Backends Overview

Twill core is backend-agnostic.
Adapters convert tokens/styles into framework-specific types.

Supported adapters:

  • egui
  • iced
  • slint

Enabling backend features

[dependencies]
twill = { version = "0.3", features = ["egui", "iced", "slint"] }

Backend modules

  • twill::backends::egui
  • twill::backends::iced
  • twill::backends::slint

Common pattern

  1. Build style/tokens in Twill.
  2. Convert via backend helper.
  3. Apply to widgets in that GUI framework.