Buttons
class Buttons(val decrease: @Composable () -> Unit = {
Icon(Icons.Default.Remove, null)
}, val increase: @Composable () -> Unit = {
Icon(Icons.Default.Add, null)
}) : PreferenceNumber.Style
Constructors
Link copied to clipboard
constructor(decrease: @Composable () -> Unit = {
Icon(Icons.Default.Remove, null)
}, increase: @Composable () -> Unit = {
Icon(Icons.Default.Add, null)
})