-
-
Save sinasamaki/a9a9f476cf1c9d3a413a6147ede49af1 to your computer and use it in GitHub Desktop.
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
import androidx.compose.foundation.background | |
import androidx.compose.foundation.border | |
import androidx.compose.foundation.layout.Box | |
import androidx.compose.foundation.layout.BoxWithConstraints | |
import androidx.compose.foundation.layout.fillMaxWidth | |
import androidx.compose.foundation.layout.height | |
import androidx.compose.foundation.layout.offset | |
import androidx.compose.foundation.layout.padding | |
import androidx.compose.foundation.layout.size | |
import androidx.compose.foundation.layout.width | |
import androidx.compose.foundation.shape.CircleShape | |
import androidx.compose.material3.ExperimentalMaterial3Api | |
import androidx.compose.material3.MaterialTheme | |
import androidx.compose.material3.Slider | |
import androidx.compose.material3.Text | |
import androidx.compose.runtime.Composable | |
import androidx.compose.runtime.LaunchedEffect | |
import androidx.compose.runtime.Stable | |
import androidx.compose.runtime.derivedStateOf | |
import androidx.compose.runtime.getValue | |
import androidx.compose.runtime.mutableFloatStateOf | |
import androidx.compose.runtime.mutableIntStateOf | |
import androidx.compose.runtime.remember | |
import androidx.compose.runtime.rememberUpdatedState | |
import androidx.compose.runtime.setValue | |
import androidx.compose.runtime.snapshotFlow | |
import androidx.compose.ui.Alignment | |
import androidx.compose.ui.Modifier | |
import androidx.compose.ui.draw.BlurredEdgeTreatment | |
import androidx.compose.ui.draw.blur | |
import androidx.compose.ui.draw.scale | |
import androidx.compose.ui.draw.shadow | |
import androidx.compose.ui.graphics.Brush | |
import androidx.compose.ui.graphics.Color | |
import androidx.compose.ui.hapticfeedback.HapticFeedbackType | |
import androidx.compose.ui.layout.onSizeChanged | |
import androidx.compose.ui.platform.LocalHapticFeedback | |
import androidx.compose.ui.text.font.FontWeight | |
import androidx.compose.ui.unit.Dp | |
import androidx.compose.ui.unit.IntOffset | |
import androidx.compose.ui.unit.dp | |
import androidx.compose.ui.unit.sp | |
import kotlinx.coroutines.flow.drop | |
import kotlinx.coroutines.flow.filter | |
import kotlinx.coroutines.flow.map | |
import kotlin.math.absoluteValue | |
import kotlin.math.roundToInt | |
@Composable | |
fun CenteredSlider( | |
value: Float, | |
onValueChanged: (Float) -> Unit, | |
modifier: Modifier = Modifier, | |
valueRange: ClosedFloatingPointRange<Float> = -1f..1f, | |
thumb: @Composable () -> Unit = DefaultThumb, | |
center: Float = 0f, | |
centerThreshold: Float = .05f, | |
centerIndicator: @Composable () -> Unit = DefaultCenterIndicator, | |
centerTrack: @Composable (@Composable (@Composable (Boolean) -> Unit) -> Unit) -> Unit = DefaultTrack, | |
) { | |
val hapticFeedback = LocalHapticFeedback.current | |
val valueState = rememberUpdatedState(value) | |
LaunchedEffect(Unit) { | |
snapshotFlow { valueState.value } | |
.map { it == center } | |
.filter { it } | |
.drop(if (value == center) 1 else 0) | |
.collect { | |
hapticFeedback.performHapticFeedback(HapticFeedbackType.LongPress) | |
} | |
} | |
Slider( | |
value = value, | |
onValueChange = { | |
onValueChanged( | |
when { | |
(it - center).absoluteValue < centerThreshold -> center | |
else -> it | |
} | |
) | |
}, | |
modifier = modifier, | |
valueRange = valueRange, | |
thumb = { | |
Box(contentAlignment = Alignment.Center) { | |
thumb() | |
} | |
}, | |
track = { sliderState -> | |
val fraction by remember { | |
derivedStateOf { | |
(sliderState.value - sliderState.valueRange.start) / (sliderState.valueRange.endInclusive - sliderState.valueRange.start) | |
} | |
} | |
val centerFraction by remember { | |
derivedStateOf { | |
(center - sliderState.valueRange.start) / (sliderState.valueRange.endInclusive - sliderState.valueRange.start) | |
} | |
} | |
BoxWithConstraints( | |
contentAlignment = Alignment.Center | |
) { | |
val isAboveCenter = fraction > centerFraction | |
val width = this@BoxWithConstraints.maxWidth | |
centerTrack { activeSection -> | |
Box( | |
modifier = Modifier | |
.align(Alignment.CenterStart) | |
.offset { | |
when { | |
isAboveCenter -> IntOffset( | |
x = (width.toPx() * centerFraction).roundToInt(), | |
y = 0 | |
) | |
else -> IntOffset( | |
x = (width.toPx() * fraction).roundToInt(), | |
y = 0 | |
) | |
} | |
} | |
.width( | |
when { | |
isAboveCenter -> width * (fraction - centerFraction) | |
else -> width * (centerFraction - fraction) | |
} | |
) | |
.height(20.dp), | |
contentAlignment = Alignment.Center, | |
content = { activeSection(isAboveCenter) } | |
) | |
} | |
Box( | |
Modifier | |
.align(Alignment.CenterStart) | |
.offset { | |
IntOffset( | |
x = (width.toPx() * centerFraction).roundToInt(), | |
y = 0 | |
) | |
} | |
.centerHorizontally(), | |
content = { centerIndicator() } | |
) | |
} | |
} | |
) | |
} | |
private val DefaultThumb = @Composable { | |
Box( | |
Modifier | |
.size(24.dp) | |
.padding(4.dp) | |
.background(MaterialTheme.colorScheme.primary, CircleShape) | |
) | |
} | |
private val DefaultTrack: @Composable (@Composable (@Composable (Boolean) -> Unit) -> Unit) -> Unit = | |
@Composable { activeSection -> | |
Box( | |
Modifier | |
.fillMaxWidth() | |
.height(4.dp) | |
.background( | |
color = MaterialTheme.colorScheme.onSurface.copy(alpha = .2f), | |
shape = CircleShape | |
) | |
) | |
activeSection { isAboveCenter -> | |
Box( | |
Modifier | |
.fillMaxWidth() | |
.height(4.dp) | |
.background(MaterialTheme.colorScheme.primary, shape = CircleShape) | |
) | |
} | |
} | |
private val DefaultCenterIndicator = @Composable { | |
Box( | |
Modifier | |
.height(24.dp) | |
.width(2.dp) | |
.background( | |
color = MaterialTheme.colorScheme.primary.copy(alpha = 1f), | |
CircleShape | |
) | |
) | |
} | |
@Stable | |
@Composable | |
fun Modifier.centerHorizontally(): Modifier { | |
var width by remember { mutableIntStateOf(0) } | |
return onSizeChanged { width = it.width } | |
.offset { IntOffset(x = -width / 2, y = 0) } | |
} | |
// ------ EXAMPLE ------ | |
// ------ Glowy Centered Slider ------ | |
@Composable | |
fun GlowyCenteredSlider() { | |
var value by remember { mutableFloatStateOf(5f) } | |
CenteredSlider( | |
value = value, | |
onValueChanged = { value = it }, | |
valueRange = -20f..20f, | |
center = 0f, | |
centerThreshold = 1f, | |
thumb = { | |
Box( | |
Modifier | |
.size(24.dp) | |
.border( | |
width = Dp.Hairline, | |
color = MaterialTheme.colorScheme.onSurface, | |
shape = CircleShape | |
) | |
) | |
Box( | |
Modifier | |
.offset(y = (-24).dp) | |
.width((.4).dp) | |
.height(16.dp) | |
.background(MaterialTheme.colorScheme.onSurface) | |
) | |
Text( | |
"${value.roundToInt()}", | |
modifier = Modifier.offset(y = (-42).dp), | |
style = MaterialTheme.typography.labelSmall.copy( | |
fontWeight = FontWeight.Normal, | |
fontSize = 10.sp | |
), | |
color = MaterialTheme.colorScheme.onSurface, | |
) | |
}, | |
centerIndicator = { | |
Box( | |
Modifier | |
.width(6.dp) | |
.height(16.dp) | |
.background(color = MaterialTheme.colorScheme.surface, CircleShape) | |
.padding(1.dp) | |
.shadow(elevation = 10.dp, shape = CircleShape) | |
.background(color = MaterialTheme.colorScheme.onSurface, CircleShape) | |
) | |
}, | |
centerTrack = { activeSection -> | |
Box( | |
Modifier | |
.fillMaxWidth() | |
.height(1.dp) | |
.background(color = MaterialTheme.colorScheme.onSurface.copy(alpha = .5f)) | |
) | |
activeSection { isAboveCenter -> | |
val brush = remember(isAboveCenter) { | |
Brush.horizontalGradient( | |
when { | |
isAboveCenter -> listOf(Color(0xFF38BDF8), Color(0xFF34D399)) | |
else -> listOf(Color(0xFFEF4444), Color(0xFFEC4899)) | |
} | |
) | |
} | |
Box( | |
Modifier | |
.fillMaxWidth() | |
.height(8.dp) | |
.scale(scaleX = 1.3f, scaleY = 1f) | |
.blur(30.dp, BlurredEdgeTreatment.Unbounded) | |
.background( | |
brush = brush, | |
shape = CircleShape | |
) | |
) | |
Box( | |
Modifier | |
.fillMaxWidth() | |
.height(8.dp) | |
.background( | |
brush = brush, | |
shape = CircleShape | |
) | |
) { | |
Box( | |
Modifier | |
.align(if (!isAboveCenter) Alignment.CenterStart else Alignment.CenterEnd) | |
.size(8.dp) | |
.padding(2.dp) | |
.background(color = Color.Black, CircleShape) | |
) | |
} | |
} | |
} | |
) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment