Lazy load components with Blazor - Virtualize in Action #107
Replies: 1 comment 2 replies
-
|
Virtualization screw when we have flex layout <MudPaper
Class="d-flex flex-wrap justify-center "
Style="background-color:transparent"
Elevation="0"
Width="100%">
<Virtualize Items="videos" Context="item">
<Thumbnail VideoModel="@item"/>
</Virtualize>
</MudPaper> Don't know how to fix this |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Lazy load components with Blazor - Virtualize in Action
Since .NET5 we have the ability to "virtualize" a component.
But what exactly is that and how do we use it?
This blog post will show you a lot of details about the tag.
https://steven-giesel.com/blogPost/15053589-4dd7-4049-b531-37c02aaccfca
Beta Was this translation helpful? Give feedback.
All reactions