Skip to content

Use RoundedBorder for all sample Table widgets (Spectre.Console 0.57.0)#469

Draft
Copilot wants to merge 2 commits into
mainfrom
copilot/evaluate-spectre-console-box-border-styles
Draft

Use RoundedBorder for all sample Table widgets (Spectre.Console 0.57.0)#469
Copilot wants to merge 2 commits into
mainfrom
copilot/evaluate-spectre-console-box-border-styles

Conversation

Copilot AI commented Jun 27, 2026

Copy link
Copy Markdown

Spectre.Console 0.57.0 added new box border styles (rounded, dashed, dotted, heavy, beveled). The sample apps were using either the default border or MinimalBorder() with no visual polish.

Changes

  • MostVersatileMaterials/ItemCard.cs — added .RoundedBorder() (was default)
  • MostVersatileMaterials/RecipesTable.cs — added .RoundedBorder() (was default)
  • ApiVersionInfo/RouteTable.cs — replaced .MinimalBorder() with .RoundedBorder()
  • ApiVersionInfo/ReleaseNoteTable.cs — replaced .MinimalBorder() with .RoundedBorder()

RoundedBorder was chosen for all four tables to keep visual style consistent across samples. The rounded ╭─╮ corners complement the emoji-rich table content without adding visual noise.

// Before
private readonly Table table = new Table()
    .AddColumn("Route")
    .AddColumn("Authorization")
    .AddColumn("Localization")
    .MinimalBorder();

// After
private readonly Table table = new Table()
    .AddColumn("Route")
    .AddColumn("Authorization")
    .AddColumn("Localization")
    .RoundedBorder();

Copilot AI changed the title [WIP] Evaluate new box border styles in Spectre.Console 0.57.0 Use RoundedBorder for all sample Table widgets (Spectre.Console 0.57.0) Jun 27, 2026
Copilot AI requested a review from sliekens June 27, 2026 10:43
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants