Answer by Liyun Zhang - MSFT for Blazor Maui Hybrid Android unable to show...
Did you check the comment of the CreateFileProvider method? It is used to call into the platform-specific code to get that platform's asset file provider not the local storage file.Actually, for the...
View ArticleAnswer by Liyun Zhang - MSFT for MAUI application not scanning BLE
I created a new project with your code and tested it on the physical device with Android 14.0. But the app will crash when I clicked the button. I found the cause is the permission after I checked the...
View ArticleComment by Liyun Zhang - MSFT on DrawerLayout must be measured with...
The NewTabbedPage is type of Shell. Did you mean you want to use Shell.Current.GotoAsync to navigate between two shell?
View ArticleComment by Liyun Zhang - MSFT on How to add adornments postfix to Maui xaml...
You can try to custom the control.
View ArticleComment by Liyun Zhang - MSFT on Firebase Push Notifications Not Working in...
What does not working mean? Was the methoed about notification received fired?
View ArticleAnswer by Liyun Zhang - MSFT for DrawerLayout must be measured with...
I created a new project to test the code you provided and reproduced this issue. Even though the navigation worked well on the Windows and iOS, I suggest you navigate from shell to another shell by...
View ArticleAnswer by Liyun Zhang - MSFT for How to add adornments postfix to Maui xaml...
You can custom a such control by yourself.The custom control(you can declare it as a contentview):<Border BackgroundColor="LightBlue"><Border.StrokeShape><RoundRectangle...
View ArticleComment by Liyun Zhang - MSFT on MAUI application not scanning BLE
But in my test, you preview code will ask the permission about bluetooth scan. And the Android.Manifest.Permission.BluetoothConnect doesn't have to be granted at runtime.
View ArticleComment by Liyun Zhang - MSFT on Conditionally Colorize MAUI Devexpress...
Was the ItemsToPickingDataGrid_CustomCellAppearance fired? In addtion, you can open a new ticket on the devexpress support.
View ArticleComment by Liyun Zhang - MSFT on Write file to AppDataDirectory fails with no...
I can't understand what did you mean. But you can print the path. @CodingNinja
View ArticleComment by Liyun Zhang - MSFT on View element accessed in code-behind is null...
Did you try to access it in some other method such as ArrangeOverride? In addition, did this appear on all the platforms?
View ArticleComment by Liyun Zhang - MSFT on How to create an entry with an immutable...
You can refer to my old answer.
View ArticleAnswer by Liyun Zhang - MSFT for Net MAUI MAPS Dark Mode
First of all, there is an issue about Customize map style. You can follow up it. And for a workaround, you can call the platform native code to do that.On the iOSThe Map's native control is...
View ArticleAnswer by Liyun Zhang - MSFT for View element accessed in code-behind is null...
Because you code still missed part about the TimerToolkitConfig, so I used the pink color.CardView.xaml:<Border Style="{StaticResource CardStyle}" VerticalOptions="Start"...
View ArticleComment by Liyun Zhang - MSFT on How to scroll to today in a custom calendar...
Could you please show the full code so that I can create a sample to test? In addition, if the calendarView.ScrollToToday(); execute when the vm.InitializeAsync() is not completed will cause this problem?
View ArticleComment by Liyun Zhang - MSFT on How to dynamically register services with...
Did you mean that you want to disable the default container and use the one you create?
View ArticleAnswer by Liyun Zhang - MSFT for How to scroll to today in a custom calendar...
So you can try to put the calendarView.ScrollToToday(); into the method that executes after the OnAppearing() method. Such as OnSizeAllocated method:protected override async void OnAppearing(){...
View ArticleAnswer by Liyun Zhang - MSFT for Use a custom control Navigation Bar in Maui...
I have converted your xamarin forms code in the github link to the maui. And it worked in the .net maui. There are some points:Grid.Children.Add has been to changed as Grid.Add. Such as...
View ArticleComment by Liyun Zhang - MSFT on local folder image not loading issue in MAUI
What's the value of the File.Exists(filePath)? I can get the correct imagesource by your code from your path if the file is existed.
View ArticleComment by Liyun Zhang - MSFT on Image display issue in MAUI XAML
Could you please show the relative code about displaying image? In addition, what platform did you test on?
View Article