Anu6is
Blazor WASM: Injecting a service
side note you can read up here https://learn.microsoft.com/en-us/aspnet/core/blazor/components/render-modes?view=aspnetcore-8.0#prerendering
22 replies
Avoid reserializing entire JSON?
Imo the user should either use standard json format or you shouldn't present the data to them in json format at all (of course that depends on context and json might make sense. Supporting custom formatting still doesn't seem worth it)
21 replies
Blazor Project Hierarchy
as long as you are using Microsoft Identity, you cannot have interactive components in your login pages. You can style the pages just like the rest of your app but the only option you have for interactivity would be using Edit Forms or javascript https://learn.microsoft.com/en-us/aspnet/core/blazor/components/render-modes?view=aspnetcore-8.0#area-folder-of-static-ssr-components
Auto simply switches between server side rendering and client side rendering, your account pages will still use server side rendering
5 replies
Blazor Problems with Layouts
this isn't related to Layouts. It has to do with Blazor render modes. The account pages are
Static Server Side Rendered
pages... static meaning, non-interactive. That's why your dark mode toggle/button and app drawer don't work, because they require interactivity3 replies