Skeleton components
Loading "Skeleton" feature.
New component to provide a generic loading templates. Similar to this Ant Design implentation.
This is provides a visually appealing way for the user to wait on data loading from the server.
Example:

@stsrki this is something I plan to work on when I'm finished with Bar/Layout improvements/bugs!
I remember we already talked about this one. Definitely would be good to have.
@MitchellNZ Going on the backlog. Just reopen when you're ready to start!
Would be great to have this. Would be great to remove a lot of the typical @if(myobject== null){}else{}
Typical types of recurring config:
- Loading template
- timeout config
- error template
- simple fade transition
Would be great to have this. Would be great to remove a lot of the typical
@if(myobject== null){}else{}
Yeah, I agree with that. If there can be an easier way without typing if-else everywhere might be useful. Like that XF library: https://github.com/HorusSoftwareUY/Xamarin.Forms.Skeleton It makes it over existing components, you can override only when you want to customize. If something like that can be done with blazorise components, it'll be awesome 🚀
It will come in time. The component is already scheduled for the next version, v1.1.
https://steven-giesel.com/blogPost/d1884385-90de-43a1-ae24-0178495f1484
Bump! Any updates on this component? Was looking for a skeleton component today, so I stumbled upon this issue. It would be a nice to have!
I think we can try it for the next release now that the team is a little bigger.
- Skeleton
- SkeletonImage
- SkeletonParagraph
<Skeleton>
<SkeletonParagraph />
</Skeleton>
@if (something)
{
<Skeleton>
<SkeletonParagraph />
</Skeleton>
}
else
{
<Paragraph />
}