SpinnerSolara
Spinner component with the Solara logo to indicate the app is busy.
@solara.component
def SpinnerSolara(size="64px", color_back="#FFCF64", color_front="#FF8C3E"):
...
Examples
Basic example
import solara
@solara.component
def Page():
solara.SpinnerSolara(size="100px")
Live output
Changing the colors
import solara
@solara.component
def Page():
solara.SpinnerSolara(size="100px", color_back="Grey", color_front="Lime")
Live output
Arguments
size
: Size of the spinner.color_back
: Color of the spinner in the background.color_front
: Color of the spinner in the foreground.