Kurukuru icon indicating copy to clipboard operation
Kurukuru copied to clipboard

Terminal Spinner for .NET platform

Results 3 Kurukuru issues
Sort by recently updated
recently updated
newest added

Although the conditions under which this occurs have not been identified, it is more likely to occur when the console is shrunk while displaying long text containing characters of different...

When a program is run inside an Alpine Linux container (the case I tested), the spinner emit blank lines and causes scrolling. ## Steps to Reproduce Example program: ```c# using...

bug

```csharp class Program { static void Spin(string line) { Spinner.Start(line, spinner => { spinner.Text = "Stage 2... "; Thread.Sleep(200); spinner.Fail("Something went wrong!"); }); } static void Main(string[] args) { string...