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
Basic behavior of the component to be created should allow:
The spinner shows as one of the material ui spinners available: https://material-ui.com/components/progress/
<Spinner active="true" />
CircularProgress
<Spinner active="false" />
<Spinner active="true" messages={["Message"]} />
<Spinner active="true" messages={["Message1", "Message2" ]} />
<Spinner active="true" elapsed={0.1} />
<Spinner active="true" backgroundStyle={{ color: black; opacity: 0.5}} />
<Spinner active="true" >My content</Spinner>
<Spinner active="true" fullscreen={True} />
The text was updated successfully, but these errors were encountered:
Fix grid center items #266
e3e7207
Add fullscreen prop #266
93c646d
Add className to typography #266
6a3cfb0
#266 New spinner component
6021bd2
* Add spinner * Update spinner * Remove log * Rename spinner to loader * Update background color + opacity to rgba * WIP - Center loader * Fix grid center items #266 * Remove comments * WIP - Add loader example 6 * Add fullscreen prop #266 * Add className to typography #266
@afonsobspinto I'm leaving issues open until we include the feature in a release
Sorry, something went wrong.
afonsobspinto
No branches or pull requests
Basic behavior of the component to be created should allow:
The spinner shows as one of the material ui spinners available: https://material-ui.com/components/progress/
<Spinner active="true" />
shows aCircularProgress
in primary color<Spinner active="false" />
hides the spinner<Spinner active="true" messages={["Message"]} />
adds a message below the CircularProgress (mockup needed)<Spinner active="true" messages={["Message1", "Message2" ]} />
alternates the 2 messages<Spinner active="true" elapsed={0.1} />
shows a linear determinate at 10%<Spinner active="true" backgroundStyle={{ color: black; opacity: 0.5}} />
changes the overlay background style<Spinner active="true" >My content</Spinner>
sets an alternative content to the spinner (nothing else is shown inside the spinner)To Do:
<Spinner active="true" fullscreen={True} />
makes the spinner fill the fullscreen or just the parent container.The text was updated successfully, but these errors were encountered: