diff --git a/core/src/main/kotlin/plus/rua/project/ui/YearGridView.kt b/core/src/main/kotlin/plus/rua/project/ui/YearGridView.kt index 0f787ac..b8bca1b 100644 --- a/core/src/main/kotlin/plus/rua/project/ui/YearGridView.kt +++ b/core/src/main/kotlin/plus/rua/project/ui/YearGridView.kt @@ -446,25 +446,6 @@ fun YearHeader( style = MaterialTheme.typography.bodySmall ) } - AnimatedContent( - targetState = year, - transitionSpec = { - if (targetState > initialState) { - slideInVertically(tween(250)) { -it } togetherWith - slideOutVertically(tween(250)) { it } - } else { - slideInVertically(tween(250)) { it } togetherWith - slideOutVertically(tween(250)) { -it } - } - }, - modifier = Modifier.padding(top = 4.dp) - ) { y -> - Text( - text = lunarYearLabel(y), - color = MaterialTheme.colorScheme.onBackground.copy(alpha = 0.6f), - style = MaterialTheme.typography.bodySmall - ) - } } }