Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/Infinite-Square/IS.Toolkit.XamarinForms
Toolkit Xamarin Forms Infinite Square
https://github.com/Infinite-Square/IS.Toolkit.XamarinForms
xamarin xamarin-forms xamarin-library
Last synced: 29 days ago
JSON representation
Toolkit Xamarin Forms Infinite Square
- Host: GitHub
- URL: https://github.com/Infinite-Square/IS.Toolkit.XamarinForms
- Owner: Infinite-Square
- License: mit
- Created: 2018-10-23T23:00:01.000Z (about 6 years ago)
- Default Branch: develop
- Last Pushed: 2019-05-10T10:14:31.000Z (over 5 years ago)
- Last Synced: 2024-11-06T16:49:39.654Z (about 1 month ago)
- Topics: xamarin, xamarin-forms, xamarin-library
- Language: C#
- Homepage:
- Size: 1.52 MB
- Stars: 6
- Watchers: 6
- Forks: 1
- Open Issues: 10
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-xamarin-forms - IS.XF.Toolkit ★5
README
# IS.XF.Toolkit
## Expander
### Bindable properties :
- BackgroundColor (`Color`)
- CornerRadius (`double`)
- BorderColor (`Color`)
- BorderWidth (`double`)
- LeftIcon (`ImageSource`)
- RightIcon (`ImageSource`)
- HeaderText (`string`)
- HeaderTextColor (`Color`)
- HeaderFontFamily (`string`)
- HeaderFontAttributes (`FontAttributes`)
- Content (`View`)
- IsOpen (`bool`)
- Animated (`bool`)
- SeparatorColor (`Color`)
- SeparatorHeight (`double`)
- HasSeparator (`bool`)## Picker
This picker customize and simplify picker appearence.
ItemsSource is a List of `AvailableValue` which contains a Label (string of your object you wan't to display) and a Value (which is your object).### Bindable properties
- Title (`string`) : Label to display above the picker. Can be null.
- TitleTextColor (`Color`) : Title's color
- TitleFontFamily (`string`) : Title's font family
- TitleFontSize (`double`) : Title's font size
- TitleFontAttributes (`FontAttributes`) : Title's font attributes
___
- SelectedItem (`AvailableValue`) : Selected value (label and value)
- TextColor (`Color`) : Displayed selected value text color
- FontSize (`double`) : Displayed selected value font size
- FontFamily (`string`) : Displayed selected value font family
- FontAttributes (`FontAttributes`) : Displayed selected value font attributes
___
- Placeholder (`string`) : Placeholder. If null, blank
- PlaceholderTextColor (`Color`) : Placeholder text color
- PlaceholderFontSize (`double`) : Placeholder font size
- PlaceholderFontFamily (`string`) : Placeholder font family
- PlaceholderFontAttributes (`FontAttributes`) : Placeholder font attributes
___
- BorderColor (`Color`) : Border's color of the picker
- CornerRadius (`double`) : Border's radius of the picker
- BackgroundColor (`Color`) : Color of the picker
- IconSource (`ImageSource`) : Right icon's source
- IsClearable (`bool`) : Indicate if the picker can be cleared. If can be cleared, show a clear icon### Event
- SelectedItemChanged (`EventHandler`) : Fired when the selected item is changed (or cleared)