Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tiger4589/xamarin.forms-cardview
A Package to create a CardView using Xamarin.Forms that works on the three platforms (Android, iOS, UWP)
https://github.com/tiger4589/xamarin.forms-cardview
cardview forms-cardview xamarin xamarin-components xamarin-forms
Last synced: 2 days ago
JSON representation
A Package to create a CardView using Xamarin.Forms that works on the three platforms (Android, iOS, UWP)
- Host: GitHub
- URL: https://github.com/tiger4589/xamarin.forms-cardview
- Owner: tiger4589
- License: mit
- Created: 2017-03-10T18:58:35.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2018-05-14T18:03:35.000Z (over 6 years ago)
- Last Synced: 2025-01-12T12:34:18.822Z (3 days ago)
- Topics: cardview, forms-cardview, xamarin, xamarin-components, xamarin-forms
- Language: C#
- Size: 470 KB
- Stars: 66
- Watchers: 8
- Forks: 16
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# Xamarin.Forms-CardView
# ATTENTION - ALERT
This package is not currently under maintenance due to heavy workload on my part. If you feel there's an error or bug somewhere and you can fix it, feel free to contribute. I'll be more than happy to accept them. Thank you.---
A Package to create a CardView using Xamarin.Forms that works on the three platforms (Android, iOS, UWP)
It is simple to use in a straight forward fashion.
You may either use it in C#, or in XAML.---
To Install this nuget package (.Net Framework):
> PM> Install-Package XamarinForms.CardViewTo Install package (.Net Standard 2.0)
> PM> Install-Package XamarinForms.CardView.NetStandard
---## CardView Bindable Properties
| Property | Property Name | Property Type | Usage | Default Value |
| :-------------: | :-------------: | :-------------: | :-------------: | :-------------: |
| CardViewContentProperty | CardViewContent | View | CardView Content | None |
| CardViewHeightRequestProperty | CardViewHeightRequest | double | Height Request | -1 |
| CardViewOutlineColorProperty | CardViewOutlineColor | Color | Outline Color | Transparent |
| CardViewInnerFrameOutlineColorProperty | CardViewInnerFrameOutlineColor | Color | Inner OutlineColor | Transparent |
| CardViewOutlineColorThicknessProperty | CardViewOutlineColorThickness | Thickness | OutlineColor Thickness | 0 |
| CardViewInnerFrameOutlineColorThicknessProperty | CardViewInnerFrameOutlineColorThickness | Thickness | Inner OutlineColor Thickness | 0 |
| CardViewHasShadowProperty | CardViewHasShadow | bool | Card View Shadow | false |
| IsSwipeToClearEnabledProperty | IsSwipeToClearEnabled | bool | Enable to clear Content With a Swipe | false |
| CardViewHorizontalOptionsProperty | CardViewHorizontalOptions | LayoutOptions | Set Card View Horisontal Options | Start |### CardViewContent Example:
```xml
```### CardViewHeightRequest Example:
```xml
```### CardViewOutlineColor Example:
```xml
```### CardViewInnerFrameOutlineColor Example:
```xml
```### CardViewHasShadow Example:
```xml
```### IsSwipeToClearEnabled Example:
```xml
```