Andre Kraemer
Andre Kraemer
I have the same issue in one of our apps. Were you able to find a workaround @DamienDoumer?
@AOgai, I'm curious, have you attempted to run a release build on your local emulator to see if it also crashes? It's worth investigating because crashes upon app launch often...
I just ran into the same problem with Visual Studio 17.4.5 and MAUI 7.0.59 in a demo project I'm developing for a conference where I'll be talking about .NET MAUI...
I ran into the same issue. I took a similar approach as @Larhei, but instead of using a `Frame`, I used a `Border`. My original code looked like this: ```...
I'm using this as a workaround @angelru. Maybe this helps. In our case we have a page called CategoryPage and this is used in multiple ShellContents with the same ViewModel....
This would be super useful. Multiple clients asked us about multi selection!
> [@BigHeadDev](https://github.com/BigHeadDev) > > try disable and enable Xaml Hot Reaload, then click on setting button and click on reset property to default value, restart visual studio. this worked for...
For those struggling with localized dates in .NET MAUI Windows Apps, here’s a solution to get a properly formatted DatePicker: 1. In your Platforms\Windows\Package.appxmanifest, make the following changes: change this:...
This is a great question @jfversluis. I've actually made an addition to the official documentation regarding localizing the datepicker, which you can find at [this link](https://learn.microsoft.com/en-us/dotnet/maui/user-interface/controls/datepicker?view=net-maui-8.0#localize-a-datepicker-on-windows). The section I contributed...