Does anyone have this working in a .NET MAUI Mobile App? I added it to a contentpage, but it is not working. Can't compile. Getting the following errors:
The type 'telerik:RadImageEditorToolbar' was not found. Verify that you are not missing an assembly reference and that all referenced assemblies have been built.
The type 'telerik:RadImageEditor' was not found. Verify that you are not missing an assembly reference and that all referenced assemblies have been built.
My code example:
<?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:telerik="http://schemas.telerik.com/2022/xaml/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="TestApp.Profile.ProfilePage"
Title="ProfilePage">
<VerticalStackLayout
Margin="10"
>
<Label
Text="Test"
VerticalOptions="Center"
HorizontalOptions="Start"
FontSize="Title"
/>
<Grid RowDefinitions="Auto,*">
<telerik:RadImageEditorToolbar ImageEditor="{x:Reference imageEditor}"/>
<telerik:RadImageEditor x:Name="imageEditor" Grid.Row="1"/>
</Grid>
</VerticalStackLayout>
</ContentPage>