We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When I try to run ProgressView, it seems to finish incorrectly. For example, in the sample code:
ProgressView
@Bean public ApplicationListener<ApplicationStartedEvent> applicationStartedListener(ViewComponentBuilder viewComponentBuilder) { return event -> { ProgressView.ProgressViewItem text = ofText(15, LEFT); ProgressView.ProgressViewItem spinner = ofSpinner(10, LEFT); ProgressView view = new ProgressView(text, spinner); view.setDescription("Waiting..."); view.setSpinner(Spinner.of(DOTS1, 80)); view.setRect(0, 0, 20, 1); ViewComponent component = viewComponentBuilder.build(view); view.start(); ViewComponent.ViewComponentRun run = component.runAsync(); try { TimeUnit.SECONDS.sleep(3); } catch (InterruptedException e) { throw new RuntimeException(e); } view.stop(); run.cancel(); }; }
After the progress completes, I always need to press Enter to trigger auto-competition again.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When I try to run
ProgressView
, it seems to finish incorrectly. For example, in the sample code:After the progress completes, I always need to press Enter to trigger auto-competition again.
The text was updated successfully, but these errors were encountered: