Spectre Menu V1.2 Apr 2026

: Align your generated text (Left, Center, or Right) to fit the layout of your menu. var aligned = new Text("Centered Content").Centered(); Use code with caution. Copied to clipboard Advanced Usage in Prompts

If you are generating a menu for user interaction, you might be looking for . You can find detailed implementation guides on the Spectre.Console Documentation or explore community discussions on GitHub for handling complex multiline inputs. Text Widget - Spectre.Console Documentation Spectre Menu v1.2

var text = new Text("Hello, Spectre Menu!"); AnsiConsole.Write(text); Use code with caution. Copied to clipboard : Align your generated text (Left, Center, or

: Add colors or formatting by passing a Style object to the constructor. You can find detailed implementation guides on the Spectre

var styled = new Text("Styled Text", new Style(foreground: Color.Blue)); AnsiConsole.Write(styled); Use code with caution. Copied to clipboard

: Create a basic string to display within your menu.