Merge pull request #418 from orz12/fix-customspeed-dynamic-not-double

fix:自定义倍速后白屏
This commit is contained in:
guozhigq
2024-01-20 13:41:04 +08:00
committed by GitHub
6 changed files with 8 additions and 9 deletions

View File

@ -210,11 +210,11 @@ class _WhisperPageState extends State<WhisperPage> {
);
} else {
// 请求错误
return SizedBox();
return const SizedBox();
}
} else {
// 骨架屏
return SizedBox();
return const SizedBox();
}
},
)