DayCell 中右上角班次("班"/"休")标签去除 surface 背景圆,
文字直接浮在单元格上,视觉更轻量。同步清理
CalendarViewModel、AnimatedGif、BottomCard 的未使用导入,
并格式化 YearGridView 与 CalendarUtilsExtraTest。
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
24 lines
548 B
Kotlin
24 lines
548 B
Kotlin
package plus.rua.project.ui
|
|
|
|
import androidx.compose.runtime.Composable
|
|
import androidx.compose.ui.Modifier
|
|
import com.github.panpf.sketch.AsyncImage
|
|
|
|
/**
|
|
* 显示动画 GIF 图片。
|
|
*
|
|
* @param modifier 应用于图片的 Modifier
|
|
* @param contentDescription 无障碍描述
|
|
*/
|
|
@Composable
|
|
fun AnimatedGif(
|
|
modifier: Modifier = Modifier,
|
|
contentDescription: String? = null,
|
|
) {
|
|
AsyncImage(
|
|
uri = "compose.resource://files/puppy_1.gif",
|
|
contentDescription = contentDescription,
|
|
modifier = modifier,
|
|
)
|
|
}
|