This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* A custom slider composable that allows selecting a value within a given range. | |
* | |
* @param value The current value of the slider. | |
* @param onValueChange The callback invoked when the value of the slider changes. | |
* @param modifier The modifier to be applied to the slider. | |
* @param valueRange The range of values the slider can represent. | |
* @param gap The spacing between indicators on the slider. | |
* @param showIndicator Determines whether to show indicators on the slider. | |
* @param showLabel Determines whether to show a label above the slider. |