A customizable date picker which support single date picker and range date picker.
Add the following to your project level build.gradle
:
allprojects {
repositories {
maven { url "https://jitpack.io" }
}
}
Add the dependancy to your module build.gradle
:
dependencies {
implementation 'com.github.playmoweb:MultiDatePicker:1.0.1'
}
- Single date picker
- Range date picker (start date to end date)
- Customizable colors
- Quickly select year by clicking on the month/year title
- Quickly change month by sliding on the days
- By selecting a day on the first click, it will set the startDate value.
- If the second selection is before the first one, it will set the startDate value to the second picked day. If the second selection is after the first one, it will set the endDate value.
- Clicking a third time will reset the startDate and endDate values, and assign the selected date to startDate.
- Clicking on the selected date if only one date is selected will reset the selected date.
Attributes | Type | Example Value | Description |
---|---|---|---|
minDate | Date? | Calendar.getInstance() | Minimum day that can be selected in the picker |
maxDate | Date? | Calendar.getInstance() | Maximum day that can be selected in the picker |
startDate | MutableState<Date?> | mutableStateOf(null) | First date selected in picker (represent the start date of the range) |
endDate | MutableState<Date?> | mutableStateOf(null) | Second date selected in picker (represent the end date of the range) |
colors | MultiDatePickerColors | MultiDatePickerColors.defaults() | Theme of colors used by the datePicker |
cardRadius | Dp | 5.dp | Radius of the picker |