I'm trying to replicate the Expander that you have in your AspNetCore. I'm attempting to do it with a TelerikCard then the Drawer. Whatever help you can give would be appreciated.
What I'm trying to replicate:

So, I got close using the card. Starting with the Header, I need to align the Telerik button to the right. Then, when I push the button, I need it to toggle the CardBody open/closed.
Drawer, which looks interesting, but didn't have any success.
What I'm trying to replicate:
So, I got close using the card. Starting with the Header, I need to align the Telerik button to the right. Then, when I push the button, I need it to toggle the CardBody open/closed.
<TelerikCard>
<CardHeader Class="gsi-border-width-0 gsi-border-color-white">
<TelerikStackLayout Orientation="StackLayoutOrientation.Horizontal">
<h5>Filter</h5>
<TelerikButton Id="filterChevronButton" FillMode="Clear" Class="gsi-border-width-0 gsi-border-color-white"
Icon="@( FilterVisible? Telerik.SvgIcons.SvgIcon.ChevronUp : Telerik.SvgIcons.SvgIcon.ChevronDown)" />
</TelerikStackLayout>
</CardHeader>
<CardBody>
<TelerikStackLayout Spacing="5px">
<TelerikCard Width="33vh">
<CardBody>
A
</CardBody>
</TelerikCard>
<TelerikCard Width="33vh">
<CardBody>
B
</CardBody>
</TelerikCard>
<TelerikCard Width="34vh">
<CardBody>
C
</CardBody>
</TelerikCard>
</TelerikStackLayout>
</CardBody>
</TelerikCard>
Drawer, which looks interesting, but didn't have any success.
<TelerikDrawer MiniMode="false">
<DrawerContent>
<DrawerItem>
<TelerikCard Width="33vh">
<CardBody>
A
</CardBody>
</TelerikCard>
</DrawerItem>
<DrawerItem>
<TelerikCard Width="33vh">
<CardBody>
A
</CardBody>
</TelerikCard>
</DrawerItem>
<DrawerItem>
<TelerikCard Width="33vh">
<CardBody>
A
</CardBody>
</TelerikCard>
</DrawerItem>
</DrawerContent>
</TelerikDrawer>