Comment by Liyun Zhang - MSFT on I can't get the SHA-1 footprint of my .NET...
You can check the official document about keystore file.
View ArticleComment by Liyun Zhang - MSFT on Custom picker, renderer migration to Handler...
When I tested it, the LayerDrawable layerDrawable = new([border, GetDrawable(element.Source).Result]); always threw null exception.
View ArticleComment by Liyun Zhang - MSFT on What is the proper way of keeping the state...
Using DI or Singleton mode is a good choice. Saving in cash is not perfectly. Becasue the gc has different behavior on different platforms.
View ArticleComment by Liyun Zhang - MSFT on Refresh/Reload MAUI Blazor Hybrid page
What does the refresh/reload the app to initial state mean? Go to the root razor page and without any changes?
View ArticleComment by Liyun Zhang - MSFT on How do I get my swipe view to delete an item...
You can refer to the official document about the Asynchronous commands for RelayCommand attribute, and it explains why the async is removed.
View ArticleComment by Liyun Zhang - MSFT on How to add params to FlyOutItem on ShellContent
To make it work both way you can keep the logical code in your public AssignedTasksPage(string tab){}.
View ArticleComment by Liyun Zhang - MSFT on MAUI Shell navigation crash (randomly?)...
Did you try to report this on the github repo? I cloned your project and the problem alway appeared on navigation dozens of times.
View ArticleComment by Liyun Zhang - MSFT on Can't build the MAUI Project for Android,...
Did you try to restart the Visual Studio after install the sdk? Or did you try to install the maui component by the Visual Studio Installer?
View ArticleComment by Liyun Zhang - MSFT on .NET MAUI - ObjectDisposed_Generic...
I can't reproduce the problem. In addition can you try to debug to find which line cause this error? I see you said you change the Frame to Border. You can try to keep the Frame and contain it in a...
View ArticleComment by Liyun Zhang - MSFT on Error while implementing push notification...
Could you please show the details about the error message? In addition, can you show the code in the csproj file and we can know the nuget packages you used.
View ArticleComment by Liyun Zhang - MSFT on .net MAUI Blazor Hybrid App trying to access...
Did you try to test it on other devices? In addition, did the problem appear if you close all the internet connection on the device?
View ArticleAnswer by Liyun Zhang - MSFT for .NET Maui Binding Warning, "LoginCommand"...
Microsoft.Maui.Controls.Xaml.Diagnostics.BindingDiagnostics: Warning: 'LoginCommand' property not found on 'MyAdministrationApp.Viewmodes.LoginPageViewModes', target property:...
View ArticleComment by Liyun Zhang - MSFT on life cycle in .net maui app for heavy operation
You can post a new question to show the details of the problem you met. @VishvaVijay
View ArticleAnswer by Liyun Zhang - MSFT for MAUI navigate the Flyout Items from codebehind
In your case, all of the three pages are root page. So you can call the following code to change the root page of the Navigation stack.[RelayCommand]public void GoToPageTwo(){ //this opens a new...
View ArticleAnswer by Liyun Zhang - MSFT for Unable to load library 'libSkiaSharp' -...
You don't have to install the all packages. You can just install the package SkiaSharp version 2.88 and then run your project.In you second picture, you installed the other platforms package in the...
View ArticleAnswer by Liyun Zhang - MSFT for Maui Xamarin service problem with android 12,14
You can register the ForegroundServiceType by the [Service] attribute:[Service(Exported = false, ForegroundServiceType = global::Android.Content.PM.ForegroundService.TypeDataSync)]public class...
View ArticleComment by Liyun Zhang - MSFT on how can i move hamburger menu to right side...
This is a known issue on the github : How to switch .NET MAUI Flyout of Shell to the right with FlowDirection?.
View ArticleAnswer by Liyun Zhang - MSFT for Maui Button Cannot Left Align and Expand...
First of all, the xxxAndExpand attribute has been deprecated in MAUI, you can check the official document about the LayoutOptions.StartAndExpand Field.But I tested your code on both xamarin and maui,...
View ArticleComment by Liyun Zhang - MSFT on MAUI Shell navigation crash (randomly?)...
Did you try to report this on the github repo? I cloned your project and the problem alway appeared on navigation dozens of times.
View ArticleAnswer by Liyun Zhang - MSFT for Is there any binding library in .Net Maui...
There is an known issue: Add support for MLKit Document scanner. Maui will support it when it release.And you can try to bind it by your self now. I download the aar and bind it.Create a new Android...
View Article