We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
IntelliAbb.Xamarin.Controls.CardView extends Xamarin.Forms.Frame and has the following additional bindable properties and events,
IntelliAbb.Xamarin.Controls.CardView
Bring in the namespace,
xmlns:ia="clr-namespace:IntelliAbb.Xamarin.Controls;assembly=IntelliAbb.Xamarin.Controls"
use the control,
<ia:CardView Icon="some.png" Title="Some Card" CornerRadius="8" HasShadow="false"> <Label Text="This is nice card" /> </ia:CardView> <ia:CardView Title="Some Card"> <Label Text="Card with title only" /> </ia:CardView> <ia:CardView> <Label Text="Content only card" /> </ia:CardView>
var card = new CardView { Icon="some.png", Title="Some Card", CornerRadius = 8 };