Below is the code to display an indeterminate ProgressBar
in Vaadin Flow (version 23):
ProgressBar spinner = new ProgressBar();
spinner.setIndeterminate(true);
spinner.setVisible(true);
The only thing is that this now seems to create a ProgressBar
that goes back and forth and I'm wondering if it's possible to have it display as a circle. I could do it by loading an Icon, an animated GIF and so on, but is it possible through the ProgressBar
class?