In my MAUI app I target
- net7.0
- net7.0-android
- net7.0-ios
I'm building a custom control and when I try to use the telerik:RadButton I get the following when building for iOS
Cannot resolve type "http://schemas.telerik.com/2022/xaml/maui:telerik:RadButton"
See below code as an example, it works fine for other controls but not the button.
<?xml version="1.0" encoding="utf-8" ?>
<ContentView
x:Class="MyApp.Control"
xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:telerik="http://schemas.telerik.com/2022/xaml/maui"
x:Name="this">
<StackLayout>
<telerik:RadBusyIndicator BackgroundColor="Red" />
<telerik:RadButton BackgroundColor="Red" Text="Hello" />
</StackLayout>
</ContentView>
I've tried touse the Telerik namespace instead of the schema as well but no luck.