Skip to content

Nuiitivet Guides

This section is the practical user guide for building apps with Nuiitivet. Use it as a step-by-step path from fundamentals to common app patterns.

Imports

Nuiitivet has a single import root: your chosen UI design system. Import it once as nv, and every symbol — layout, state, widgets, styles, modifiers — is reachable from there.

import nuiitivet.material as nv

nv.Column([nv.Text("Hello"), nv.Button("Click")])

An app always uses exactly one design system, so selecting it should hand you the whole toolkit in one import. Only nuiitivet.material is available today.

  1. Layout
  2. Observable
  3. Concurrency
  4. UI Design System
  5. Packaging

Topics

AI pair-programming

Advanced