val animateLong = animateValueAsState(
targetValue = promotiondate,
finishedListener = {
},
typeConverter = TwoWayConverter(
// Long -> AnimationVector1D 변환
convertToVector = { AnimationVector1D(it.toFloat()) },
// AnimationVector1D -> Long 변환
convertFromVector = { it.value.toLong() }
),
animationSpec = tween(durationMillis = 1000)
)