Last active
May 27, 2024 16:20
-
-
Save riggaroo/03289c468f791686ce451b173a2d11cc to your computer and use it in GitHub Desktop.
Jetpack Compose implementation of Bouncy Loader https://twitter.com/riggaroo/status/1554430412142903297 (inspiration - https://twitter.com/zander_supafast/status/1554384338619453440)
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.animation.core.Animatable | |
import androidx.compose.animation.core.Spring | |
import androidx.compose.animation.core.SpringSpec | |
import androidx.compose.animation.core.spring | |
import androidx.compose.foundation.Canvas | |
import androidx.compose.foundation.layout.Box | |
import androidx.compose.foundation.layout.fillMaxSize | |
import androidx.compose.foundation.layout.size | |
import androidx.compose.runtime.Composable | |
import androidx.compose.runtime.LaunchedEffect | |
import androidx.compose.runtime.mutableStateOf | |
import androidx.compose.runtime.remember | |
import androidx.compose.ui.Alignment | |
import androidx.compose.ui.Modifier | |
import androidx.compose.ui.graphics.Brush | |
import androidx.compose.ui.graphics.Color | |
import androidx.compose.ui.graphics.graphicsLayer | |
import androidx.compose.ui.layout.onSizeChanged | |
import androidx.compose.ui.tooling.preview.Preview | |
import androidx.compose.ui.unit.IntSize | |
import androidx.compose.ui.unit.dp | |
import kotlinx.coroutines.delay | |
/* | |
* Copyright 2022 The Android Open Source Project | |
* | |
* Licensed under the Apache License, Version 2.0 (the "License"); | |
* you may not use this file except in compliance with the License. | |
* You may obtain a copy of the License at | |
* | |
* http://www.apache.org/licenses/LICENSE-2.0 | |
* | |
* Unless required by applicable law or agreed to in writing, software | |
* distributed under the License is distributed on an "AS IS" BASIS, | |
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
* See the License for the specific language governing permissions and | |
* limitations under the License. | |
*/ | |
@Composable | |
@Preview | |
fun BouncyLoader() { | |
val yOffset = remember { | |
Animatable(0f) | |
} | |
val scale = remember { | |
Animatable(1f) | |
} | |
LaunchedEffect("bouncyLoader") { | |
delay(400) | |
// Animate y to half the height | |
yOffset.animateTo(0.5f, bouncyAnimationSpec) | |
scale.animateTo(3f, bouncyAnimationSpec) | |
delay(500) | |
scale.animateTo(10f, bouncyAnimationSpec) | |
delay(500) | |
scale.animateTo(50f, bouncyAnimationSpec) | |
} | |
val size = remember { | |
mutableStateOf(IntSize.Zero) | |
} | |
Box( | |
Modifier.fillMaxSize() | |
.onSizeChanged { | |
size.value = it | |
}) { | |
GradientCircle( | |
Modifier.align(Alignment.TopCenter) | |
.size(26.dp) | |
.graphicsLayer { | |
scaleX = scale.value | |
scaleY = scale.value | |
translationY = yOffset.value * size.value.height | |
} | |
) | |
} | |
} | |
@Composable | |
fun GradientCircle(modifier: Modifier = Modifier) { | |
val brush = remember { | |
Brush.verticalGradient(listOf(Color(0xFFF56E34), Color(0xFF234EDA))) | |
} | |
Canvas(modifier = modifier) { | |
drawCircle(brush = brush) | |
} | |
} | |
val bouncyAnimationSpec: SpringSpec<Float> = spring( | |
dampingRatio = Spring.DampingRatioMediumBouncy, | |
stiffness = Spring.StiffnessLow | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment