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