-
-
Notifications
You must be signed in to change notification settings - Fork 89
/
rotatingSquare.kt
52 lines (49 loc) · 1.84 KB
/
rotatingSquare.kt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
package co.joebirch.composeplayground.animation
import androidx.compose.animation.core.LinearEasing
import androidx.compose.animation.core.RepeatMode
import androidx.compose.animation.core.animateFloatAsState
import androidx.compose.animation.core.infiniteRepeatable
import androidx.compose.animation.core.repeatable
import androidx.compose.animation.core.tween
import androidx.compose.animation.core.updateTransition
import androidx.compose.foundation.Canvas
import androidx.compose.foundation.layout.*
import androidx.compose.runtime.Composable
import androidx.compose.runtime.getValue
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.Color
import androidx.compose.ui.graphics.drawscope.rotate
import androidx.compose.ui.unit.dp
import co.joebirch.composeplayground.ComposableLayout
object RotatingShapeAnimationView : ComposableLayout {
@Composable
override fun build() {
Column(
modifier = Modifier.fillMaxSize().padding(32.dp),
verticalArrangement = Arrangement.SpaceEvenly,
horizontalAlignment = Alignment.CenterHorizontally
) {
RotatingSquareComponent()
}
}
@Composable
fun RotatingSquareComponent() {
val rotation: Float by animateFloatAsState(
targetValue = 360f,
animationSpec = infiniteRepeatable(
animation = tween(durationMillis = 3000),
repeatMode = RepeatMode.Restart
)
)
Box(modifier = Modifier.fillMaxSize()) {
Canvas(modifier = Modifier.size(80.dp).align(Alignment.Center)) {
rotate(rotation) {
drawRect(Color.Black, size = size)
}
}
}
}
}