mirror of
				https://github.com/nsnail/spectre.console.git
				synced 2025-11-04 18:40:50 +08:00 
			
		
		
		
	Add support for fake input in asciicast recordings
* Fixes a bug with `SelectionPrompt` and page size. * Allow `IAnsiConsoleInput` to return `null`.
This commit is contained in:
		
				
					committed by
					
						
						Phil Scott
					
				
			
			
				
	
			
			
			
						parent
						
							46abadaccb
						
					
				
				
					commit
					450d87f5d3
				
			@@ -0,0 +1,21 @@
 | 
			
		||||
using Spectre.Console;
 | 
			
		||||
 | 
			
		||||
namespace Generator.Commands.Samples
 | 
			
		||||
{
 | 
			
		||||
    internal class RuleSample : BaseSample
 | 
			
		||||
    {
 | 
			
		||||
        public override (int Cols, int Rows) ConsoleSize => (82, 10);
 | 
			
		||||
 | 
			
		||||
        public override void Run(IAnsiConsole console)
 | 
			
		||||
        {
 | 
			
		||||
            console.Write(new Rule());
 | 
			
		||||
            console.WriteLine();
 | 
			
		||||
            console.Write(new Rule("[blue]Left aligned[/]").LeftAligned().RuleStyle("red"));
 | 
			
		||||
            console.WriteLine();
 | 
			
		||||
            console.Write(new Rule("[green]Centered[/]").Centered().RuleStyle("green"));
 | 
			
		||||
            console.WriteLine();
 | 
			
		||||
            console.Write(new Rule("[red]Right aligned[/]").RightAligned().RuleStyle("blue"));
 | 
			
		||||
            console.WriteLine();
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
		Reference in New Issue
	
	Block a user