Hello,
I seem to be having an issue with the Telerik .NET MAUI SideDrawer control. I can see the MainContent view, however, I have no means to open the DrawerContent.
Below is my ContentPage markup and a screenshot of the result.
Is my markup correct? Is it just my device causing the issue?
ContentPage Markup
<?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="SynergyMobile4.Views.TestReport.TR_Index"
xmlns:telerik="http://schemas.telerik.com/2022/xaml/maui"
xmlns:tr="clr-namespace:SynergyMobile4.ViewModels.TestReport"
Title="Test Report">
<VerticalStackLayout>
<telerik:RadSideDrawer x:Name="drawer"
DrawerLength="200">
<telerik:RadSideDrawer.MainContent>
<Label Text="Main content" />
</telerik:RadSideDrawer.MainContent>
<telerik:RadSideDrawer.DrawerContent>
<VerticalStackLayout Spacing="10"
BackgroundColor="Red"
Padding="10, 10, 0, 0">
<Button Text="Mail" />
<Button Text="Calendar" />
<Button Text="People" />
<Button Text="Tasks" />
</VerticalStackLayout>
</telerik:RadSideDrawer.DrawerContent>
</telerik:RadSideDrawer>
</VerticalStackLayout>
</ContentPage>
Result (screenshot from Galaxy S22 physical device)
Edit:
If I hardcode the [IsOpen] property to "True" in the XAML, the drawer opens and I can see the items, but I still have no button or control to open it naturally.