Graeme
Graeme
I have created a lib that enables MVVM using the Toolkit in Blazor that includes a `MvvmNavigationManager` and a `MvvmNavLink` component that removes magic strings using navigation by ViewModel (class/interface)....
I have posted a [repo](https://github.com/gragra33/MvvmSampleBlazor) that is a conversion of the [Xamarin Sample](https://github.com/CommunityToolkit/MVVM-Samples) and, with minimal changes, made it work for Blazor WASM. I hope that someone finds this useful.
I have created a lib that expands on @adamskt code that includes a `MvvmNavigationManager` and a `MvvmNavLink` component that removes the use of magic strings using navigation by ViewModel (class/interface)....
@mkArtakMSFT this I feel is related: [#51132](https://github.com/dotnet/aspnetcore/issues/51132)
Opps @SteveSandersonMS ... I meant [#50998](https://github.com/dotnet/aspnetcore/issues/50998)
@danroth27 My thoughts are that there would be 4 types of possible footers: 1. Grid Footer across the visible base of the grid 2. Grid cell footer / cell -...
@V0ldek @achselschweisz @JohnyL @lofcz @TimPurdum @333fred You can use string literals in your razor (.Net 7) - see below: ```html @{ string literal = $@"""Value {Value}"""; @literal } ``` or,...
@achselschweisz I don't disagree however, for now, there is a working solution.
@Pinox Sorry for the late reply as I was not watching the issues for this Microsoft repo. The `IFilesService` interface allows us to abstract the implementation to any implementation. The...