54 lines
1.9 KiB
Plaintext
54 lines
1.9 KiB
Plaintext
<View name="NewEditor Demo" theme="xcui_demo_theme.xctheme" style="Root">
|
|
<Column id="rootColumn" gap="12" padding="18">
|
|
<Card id="hero" style="HeroCard">
|
|
<Column gap="6">
|
|
<Text id="title" text="New XCUI Shell" style="HeroTitle" />
|
|
<Text id="subtitle" text="Markup -> Layout -> Style -> DrawData" style="HeroSubtitle" />
|
|
</Column>
|
|
</Card>
|
|
<Row id="metricRow" gap="10">
|
|
<Card id="metric1" style="MetricCard" width="stretch">
|
|
<Text text="Tree status" style="MetricLabel" />
|
|
<Text text="Driven by runtime" style="MetricValue" />
|
|
</Card>
|
|
<Card id="metric2" style="MetricCard" width="stretch">
|
|
<Text text="Input" style="MetricLabel" />
|
|
<Text text="Hover + shortcuts" style="MetricValue" />
|
|
</Card>
|
|
</Row>
|
|
<Card id="commandCard" style="MetricCard">
|
|
<Column gap="6">
|
|
<Text text="Agent command" style="MetricLabel" />
|
|
<TextField
|
|
id="agentPrompt"
|
|
width="stretch"
|
|
min-width="240"
|
|
placeholder="Type a command or note for XCUI..."
|
|
value="" />
|
|
</Column>
|
|
</Card>
|
|
<Card id="notesCard" style="MetricCard">
|
|
<Column gap="6">
|
|
<Text text="Session notes" style="MetricLabel" />
|
|
<TextArea
|
|
id="sessionNotes"
|
|
width="stretch"
|
|
min-width="240"
|
|
rows="4"
|
|
placeholder="Write multiline notes, prompts, or todos for the current screen..."
|
|
value="" />
|
|
</Column>
|
|
</Card>
|
|
<Button id="toggleAccent" style="AccentButton">
|
|
<Text text="Toggle Accent" style="ButtonLabel" />
|
|
</Button>
|
|
<Card id="debug" style="DebugCard">
|
|
<Column gap="4">
|
|
<Text id="statusFocus" text="Focus: waiting" style="Meta" />
|
|
<Text id="statusLayout" text="Layout: idle" style="Meta" />
|
|
<Text id="statusCommands" text="Commands: ready" style="Meta" />
|
|
</Column>
|
|
</Card>
|
|
</Column>
|
|
</View>
|