.Net 5.0 Blazor Goodness
With the release of .Net 5.0 quickly approaching it is time to take a look and see what kind of goodies are include for Blazor. .Net 5.0 is aimed at unifying the .Net platform by commuting all the different aspects of the platform into a single release set. But they have including a lot of upgrades and new features for Blazor. To see these new features you have to be using at least Visual Studio 2019 16.8 Preview 3 and have .Net 5.0 install on your machine. Here are the new features that I have found exciting. See the linked source code to see them in action. CSS isolation Input Radio Component UI Focus Support File Input Component On-toggle Event Support CSS Isolation With this feature, you can now include separate style sheets that are scoped just for your components. This will allow you to provide the styling you want for your component libraries or just your individual component. This is implemented by convention. You provide a CSS file nam...