no message
This commit is contained in:
parent
afeb05272e
commit
03a52f5715
|
|
@ -35,7 +35,7 @@ class AnswerHandwriting extends Dialog {
|
|||
Widget build(BuildContext context) {
|
||||
return Center(
|
||||
child: Container(
|
||||
width: ScreenUtil().screenWidth - 60.r,
|
||||
width: ScreenUtil().screenWidth - (ScreenUtil().scaleHeight < 1.5 ? 100.r : 60.r),
|
||||
alignment: Alignment.center,
|
||||
child: AnswerHandwritingMainBox(
|
||||
jobId: jobId,
|
||||
|
|
@ -720,11 +720,11 @@ Widget $bottomPlaybar(BuildContext context, int timeConsuming, int pauseCount, L
|
|||
if (_val.play) {
|
||||
// 开始播放
|
||||
usePlaybar.playTimingStarts();
|
||||
if (!usePlaybar.playPause.value) Future.delayed(Duration.zero, () => usePlaybar.playPause.value = true);
|
||||
if (!usePlaybar.playPause.value) usePlaybar.playPause.value = true;
|
||||
} else {
|
||||
// 暂停播放
|
||||
usePlaybar.playTimingSuspend();
|
||||
if (usePlaybar.playPause.value) Future.delayed(Duration.zero, () => usePlaybar.playPause.value = false);
|
||||
if (usePlaybar.playPause.value) usePlaybar.playPause.value = false;
|
||||
}
|
||||
break;
|
||||
case JobHandwritingGetReadyBus:
|
||||
|
|
|
|||
Loading…
Reference in New Issue