Hi.
I have this running in a net9 maui hybrid app, but there are some issues. The Image drag and drop does not work, and it is not possible to browse. Also the fonts settings (colour, background, font, size) seem rather hit and miss to take effect.
I initialise it like this
builder.Services.AddMauiBlazorWebView();
builder.Services.AddSyncfusionBlazor();
and in my Main.Razor file I am setting it like this
<SfRichTextEditor r @bind-Value="ViewModel.Text" SaveInterval="1" ShowCharCount="true" Height="700px">
<RichTextEditorImageSettings Display="ImageDisplay.Inline" SaveUrl="api/Image/Save" Path="./images/"></RichTextEditorImageSettings>
<RichTextEditorEvents BeforeUploadImage="@BeforeUploadImage"/>
<h2>Welcome to the Syncfusion Rich Text Editor</h2>