Package-level declarations

Types

Link copied to clipboard
data class DurationConfig(val timeFormat: DurationFormat = DurationFormat.MM_SS, @IntRange(from = 0) val currentTime: Long? = null, @IntRange(from = 0) val minTime: Long = 0, @IntRange(from = 1) val maxTime: Long = Long.MAX_VALUE, val displayClearButton: Boolean = false, val icons: LibIcons = BaseConstants.DEFAULT_ICON_STYLE, val orientation: LibOrientation? = BaseConstants.DEFAULT_LIB_LAYOUT) : BaseConfigs

The general configuration for the duration dialog.

Link copied to clipboard

Available time formats.

Link copied to clipboard
class DurationSelection(val withButtonView: Boolean = true, val extraButton: SelectionButton? = null, val onExtraButtonClick: () -> Unit? = null, val negativeButton: SelectionButton? = BaseConstants.DEFAULT_NEGATIVE_BUTTON, val onNegativeClick: () -> Unit? = null, val positiveButton: SelectionButton = BaseConstants.DEFAULT_POSITIVE_BUTTON, val onPositiveClick: (time: Long) -> Unit) : BaseSelection

The selection configuration for the duration dialog.