You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When used with BlazorBindings, in most cases App class looks like this:
public class App : Application
{
public App(MauiBlazorBindingsRenderer renderer)
{
renderer.AddComponent<AppShell>(this);
}
}
It is not advised to interact with MauiBlazorBindingsRenderer in user's code, therefore we should add BlazorBindingsApp<T> class, which will render T component as a root.
The text was updated successfully, but these errors were encountered:
When used with BlazorBindings, in most cases App class looks like this:
It is not advised to interact with
MauiBlazorBindingsRenderer
in user's code, therefore we should addBlazorBindingsApp<T>
class, which will renderT
component as a root.The text was updated successfully, but these errors were encountered: