Rogier van der Hee
                                            Rogier van der Hee
                                        
                                    I'm hitting sort of the same issue: my Image only appears after the source has been changed (for animations between images) or a full layout cycle has been done. I...
hi Jonathan, I meant that that toggling the nav bar on/off was showing it in the page. I'll see if I can reproduce the case, it is quite standard usage...
I suspect it has something to do with the Forms layout engine and size calculation. Either incorrect sizing by Forms or the incorrect size as seen by Glide. I noticed...
I experience this as well on my oldest iPad (5th gen) - refreshing is still slow (~5-7s of pure loading), so caching is not helping. Nothing fancy in the app....
What I did is create a DependencyService in my shared project with only Android having implementation like @AndreaGobs has. I added a check for the SDK version - 31 needs...
@syedjamal these are the BLE permissions I have in my manifest: ``` ```
This one hurts pretty badly with .NET 8 if you have SSR with any kind of interactivity somewhere
.NET6 has a new API to manipulate the query string [`NavigationManager.GetUriWithQueryParameter`](https://docs.microsoft.com/en-us/dotnet/api/microsoft.aspnetcore.components.navigationmanagerextensions.geturiwithqueryparameter), see the docs here https://docs.microsoft.com/en-us/aspnet/core/blazor/fundamentals/routing?view=aspnetcore-6.0#query-strings Did you try that?
Another approach is to keep the CSS files unbundled during development and stitch them together with @import statements. See the approach Snowpack takes for example. So only generate 1 overview...
As per [https://github.com/dotnet/aspnetcore/pull/24574](https://github.com/dotnet/aspnetcore/pull/24574) it should be possible to trigger just a bundle + refresh instead of build + bundle +restart + refresh, right? Indeed, looks like an improvement is possible...