-
Notifications
You must be signed in to change notification settings - Fork 12
CardView
Hussain N. Abbasi edited this page Nov 16, 2018
·
7 revisions
iOS | Android | UWP |
---|---|---|
![]() |
![]() |
Coming soon |
IntelliAbb.Xamarin.Controls.CardView
extends Xamarin.Forms.Frame and has the following additional bindable properties and events,
Property | Description |
---|---|
Icon | Sets the icon for the card. Optional |
Title | Sets the title of the card. Optional |
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
};
XamarinControls by intelliAbb