PickerDateDialogModel
class PickerDateDialogModel(var positiveButton: TextModel? = null, var positiveButtonListener: (localDate: LocalDate) -> Unit? = null, var initialDate: LocalDate = LocalDate.now(), var initialDisplayMode: InitialDisplayMode = InitialDisplayMode.PICK_DATE, var yearsRange: IntRange = LocalDate.now().year - 100..LocalDate.now().year, var selectableDates: SelectableDates? = null, var negativeButton: TextModel? = null, var negativeButtonListener: () -> Unit? = null, var cancelable: Boolean = true, var onDismiss: () -> Unit? = null)
Constructors
Link copied to clipboard
constructor(positiveButton: TextModel? = null, positiveButtonListener: (localDate: LocalDate) -> Unit? = null, initialDate: LocalDate = LocalDate.now(), initialDisplayMode: InitialDisplayMode = InitialDisplayMode.PICK_DATE, yearsRange: IntRange = LocalDate.now().year - 100..LocalDate.now().year, selectableDates: SelectableDates? = null, negativeButton: TextModel? = null, negativeButtonListener: () -> Unit? = null, cancelable: Boolean = true, onDismiss: () -> Unit? = null)