> ## Documentation Index
> Fetch the complete documentation index at: https://docs.tryflowy.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Canvas Overview

> Learn the anatomy of the canvas editor so every tool is one glance away.

export const DemoVideo = ({src, poster, caption, aspectRatio = "16 / 10", className = ""}) => {
  return <figure className={`not-prose my-6 w-full ${className}`}>
      <div className="overflow-hidden rounded-2xl border border-gray-950/10 bg-gray-100 dark:border-white/10 dark:bg-white/5" style={{
    aspectRatio
  }}>
        <video src={src} poster={poster} loop autoPlay muted playsInline className="h-full w-full object-cover" />
      </div>
      {caption && <figcaption className="mt-2 text-center text-sm text-gray-500 dark:text-gray-400">
          {caption}
        </figcaption>}
    </figure>;
};

The **Canvas** is Flowy's infinite workspace: an open board where you drop nodes, wire them together, and generate text, images, video, audio, and more. Everything else in the editor — toolbar, inspector, AI chat — exists to serve what happens on this surface.

<DemoVideo src="/videos/canvas/overview.mp4" poster="/images/posters/canvas/overview.jpg" caption="A tour of the canvas editor: left toolbar, node surface, inspector, and the Flowy AI dock" />

<Frame caption="The canvas editor: left toolbar, infinite node surface, Canvas/Studio pill up top, and the Flowy AI dock along the bottom">
  <img src="https://mintcdn.com/flamapp/Ht3d9_jt2Rn5fhsi/images/canvas-overview.png?fit=max&auto=format&n=Ht3d9_jt2Rn5fhsi&q=85&s=09d81c12a23ae4e83eb2297122a90452" alt="Annotated Flowy canvas layout" width="1512" height="805" data-path="images/canvas-overview.png" />
</Frame>

## The node surface

The infinite board fills your screen. Pan and zoom freely, spread work across as much space as you need, and connect a node's output to another node's input to pass results downstream. See [Navigation & Selection](/canvas/navigation) for every way to move around, and [Nodes](/canvas/nodes/overview) for what you can place here.

## Left toolbar

A vertical rail on the left edge holds the **Add a node** menu, the select, pan, cut, sticky note, and group tools, undo and redo, auto layout, and preferences. The [Canvas Toolbar](/canvas/toolbar) page walks it top to bottom.

## Node inspector

Select a single node and the inspector opens along the right edge with that node's full editable controls — model, settings, versions, and a credit estimate for the next run. The node itself keeps a compact summary so the board stays readable.

## Flowy AI dock

The pill at the bottom of the canvas — "Describe what you want to generate…" — expands into the Flowy AI composer. Above it, a row of [quick actions](/canvas/quick-actions) suggests one-click prompts that change with your selection. Submitting a prompt opens the full chat panel, where the assistant plans and builds on the canvas for you. Learn more in [AI Assistant](/canvas/ai/overview).

## Header

Across the top of the editor:

* **Project pill** (left) — the project name and menu; click the name to rename it.
* **Canvas / Studio pill** (center) — switches between the node canvas and the Studio timeline, where you refine a Composition and export video.
* **Search** (<kbd>⌘</kbd> <kbd>K</kbd>) — the command palette. Run project actions, switch modes, reopen recent projects, or type to jump to any node on the canvas by its title or prompt.
* **Generation activity** — a live chip that appears while generations run, with a count and per-item progress.
* **Credits** — your workspace credit balance.

## Bottom-left controls

A small pill in the bottom-left corner toggles the **minimap** and shows the current zoom level. Click the percentage for zoom presets: in, out, 100%, fit, and zoom to selection.

## Keep exploring

<CardGroup cols={2}>
  <Card title="Nodes" icon="layer-group" href="/canvas/nodes/overview">
    Meet every node type you can create and connect.
  </Card>

  <Card title="Image Tools" icon="wand-magic-sparkles" href="/canvas/image-tools/overview">
    Upscale, inpaint, remove backgrounds, and more.
  </Card>

  <Card title="AI Assistant" icon="sparkles" href="/canvas/ai/overview">
    Plan and build the canvas with Flowy AI.
  </Card>

  <Card title="Quick Actions" icon="bolt" href="/canvas/quick-actions">
    One-click prompts that adapt to your selection.
  </Card>
</CardGroup>
