YearMonthPickerConstraints

data class YearMonthPickerConstraints(val minYearMonth: YearMonth? = null, val maxYearMonth: YearMonth? = null)

Year/month constraints applied by YearMonthPickerItems.

Parameters

minYearMonth

The earliest selectable year/month, inclusive. Pass null to omit the lower bound.

maxYearMonth

The latest selectable year/month, inclusive. Pass null to omit the upper bound.

Constructors

Link copied to clipboard
constructor(minYearMonth: YearMonth? = null, maxYearMonth: YearMonth? = null)

Properties

Link copied to clipboard
Link copied to clipboard

Functions

Link copied to clipboard
fun contains(yearMonth: YearMonth): Boolean

Returns whether yearMonth is inside the configured inclusive bounds.