# Dialogue Box NPC dialogue panel with a continue prompt. ```{raw} html ▶ Run in browser ``` **Tags:** `ui` `dialogue` `game-ui` ## What it demonstrates - A panel anchored across the bottom of the screen with `AnchorPreset.BOTTOM_WIDE`. - Speaker name + body text driven by a list of dialogue lines. - A "continue" button that advances through the lines and closes on the last one. - Top-level Controls use anchors + margins, never absolute position. Run: uv run python examples/features/ui/dialog.py ## Source ```{literalinclude} ../../examples/features/ui/dialog.py :language: python :linenos: ```