有没有办法在按下某个键之前停止 Dart 进程的执行?
这将是这样的:
- 在 html 文件中:
<input id="nextstep" type="button" value="nextstep" />
- 在飞镖文件中:
void main() {
while(true) {
// Do something here to pause the loop
// until the nextstep button is pressed
}
}
有没有办法在按下某个键之前停止 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
}
}