ComposeWaveLoading icon indicating copy to clipboard operation
ComposeWaveLoading copied to clipboard

Compose 波浪效果进度加载

Results 1 ComposeWaveLoading issues
Sort by recently updated
recently updated
newest added

基本使用: ```kotlin Box( modifier = Modifier .weight(1f) .waveLoading( backDrawType = DrawType.DrawImage, progress = progress, velocity = velocity, amplitude = amplitude, ), ) { } ``` 问题: - 1.边缘有点瑕疵,我尝试添加了`isAntiAlias=true`不行,暂时不知道怎么解决。 - 2.伪适配了BackDrawType.None,未实现真正的透明背景。...