Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/TBertuzzi/Xamarin.Forms.StepProgressBar
:package: Step Progress bar control in Xamarin.Forms
https://github.com/TBertuzzi/Xamarin.Forms.StepProgressBar
Last synced: 3 months ago
JSON representation
:package: Step Progress bar control in Xamarin.Forms
- Host: GitHub
- URL: https://github.com/TBertuzzi/Xamarin.Forms.StepProgressBar
- Owner: TBertuzzi
- Created: 2018-06-19T13:57:33.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-08-06T01:37:50.000Z (about 5 years ago)
- Last Synced: 2024-07-02T11:38:55.380Z (4 months ago)
- Language: C#
- Homepage:
- Size: 368 KB
- Stars: 15
- Watchers: 3
- Forks: 5
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-xamarin-forms - Xamarin.Forms.StepProgressBar ★15
README
# Xamarin.Forms.StepProgressBar
Add a step rogress bar in your Xamarin.Forms project.
Square control Based on StepBar by [CrossGeeks](https://github.com/CrossGeeks) (https://github.com/CrossGeeks/StepBar).
You can choose between a square or circular control.
###### This is the component, works on iOS, Android and UWP.![](https://github.com/TBertuzzi/Xamarin.Forms.StepProgressBar/blob/master/Resources/stepBarSample.png?raw=true)
**NuGet**
|Name|Info|
| ------------------- | :------------------: |
|Xamarin.Forms.StepProgressBar|[![NuGet](https://buildstats.info/nuget/Xamarin.Forms.StepProgressBar)](https://www.nuget.org/packages/Xamarin.Forms.StepProgressBar/)|**Platform Support**
MultiSelectListView is a .NET Standard 2.0 library.Its only dependency is the Xamarin.Forms
## Setup / Usage
Does not require additional configuration. Just install the package in the shared project and use.
You just need to add the reference in your xaml file.
```csharp
xmlns:control="clr-namespace:Xamarin.Forms.StepProgressBar;assembly=Xamarin.Forms.StepProgressBar"
```Control
```csharp
```
Available properties
* StepCanTouch: Indicates if it is possible to interact with the step. If marked false does not trigger the event.
* StepColor: Control color. Hexadecimal can be used.
* Steps: Number of steps to display.
* StepSelected: Indicates which step is selected.
* IsCircle: Indicates whether the control will be a circle. If marked as false, use a square to display the step.The complete example can be downloaded here: https://github.com/TBertuzzi/Xamarin.Forms.StepProgressBar/tree/master/StepProgressBarSample