Package-level declarations

Functions

Link copied to clipboard
fun NumberPicker(    number: Int,     modifier: Modifier = Modifier,     range: IntRange? = null,     textStyle: TextStyle = LocalTextStyle.current,     arrowsColor: Color = MaterialTheme.colorScheme.primary,     allowUseManualInput: Boolean = true,     onStateChanged: (Int) -> Unit = {})
Link copied to clipboard
fun <T> SetPicker(    current: T,     dataList: List<T>,     modifier: Modifier = Modifier,     textStyle: TextStyle = LocalTextStyle.current,     arrowsColor: Color = MaterialTheme.colorScheme.primary,     dataToString: @Composable (T) -> String = { it.toString() },     onStateChanged: (T) -> Unit = {})