Unable to access observable property in viewmodel from corresponding view .xaml file – .NET MAUI MVVM
I am developing a .NET MAUI application where I am using the MVVM pattern via Community.Toolkit.MVVM nuget package. In the below code, on the MorePage I am trying to bind the title to Forecast.Name, which is an obervable property of the MorePageViewModel which is set as the binding context for the MorePage itself. I have verified that the navigating function gets executed with the right object being passed around, so the problem seems to be either in the MorePageViewModel or MorePage.xaml(.cs), but I am not sure where.