Skip to content

Commit

Permalink
Cleanup @composable()
Browse files Browse the repository at this point in the history
  • Loading branch information
alorma committed Mar 5, 2024
1 parent bfbe722 commit c679d5d
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ fun SettingsSlider(
value: Float,
onValueChange: (Float) -> Unit,
modifier: Modifier = Modifier,
subtitle: @Composable() (() -> Unit)? = null,
icon: @Composable() (() -> Unit)? = null,
subtitle: @Composable (() -> Unit)? = null,
icon: @Composable (() -> Unit)? = null,
enabled: Boolean = true,
valueRange: ClosedFloatingPointRange<Float> = 0f..1f,
@IntRange(from = 0) steps: Int = 0,
Expand Down

0 comments on commit c679d5d

Please sign in to comment.