有没有办法在按下某个键之前停止执行Dart进程?
这就像是:
<input id="nextstep" type="button" value="nextstep" />
void main() {
while(true) {
// Do something here to pause the loop
// until the nextstep button is pressed
}
}
答案 0 :(得分:6)
您只需在keyPress
上添加input
侦听器即可开始一些额外处理。
void main() {
final input = querySelector("#nextstep");
input.onKeyPress.listen((e){
nextProcessingStep();
});
}