An open API service indexing awesome lists of open source software.

https://github.com/qyvlik/DateSelector

DateSelector. date select by qml
https://github.com/qyvlik/DateSelector

dateselector qml

Last synced: 14 days ago
JSON representation

DateSelector. date select by qml

Awesome Lists containing this project

README

          

# DateSelector

`DateSelector` and `DateTumbler`.

---

win7

![](images/win7.png)

![](images/win7-new.png)

---

Android 4

![](images/android.png)

![](images/android-landspace.png)

![](images/01.png)

![](images/02.png)

## How to uss

```qml
DateSelector{
startYear: 2000 // set the start year
endYear: 2016 // set the end year
onDateChanged:{
console.log(date);
}
}
```

```qml
DateTumbler{
startYear: 2000 // set the start year
endYear: 2016 // set the end year
onDateChanged:{
console.log(date);
}
}
```

### property

*date* **date** read only

The **date** property hold that what date you select from the DateSelector. It's a JS's Date object.