gpt4 book ai didi

dart - 停止执行 Dart 程序,直到按下某个键

转载 作者:行者123 更新时间:2023-12-04 23:10:27 24 4
gpt4 key购买 nike

有没有办法在按下某个键之前停止 Dart 进程的执行?

这将是这样的:

  • 在 html 文件中:

  • <input id="nextstep" type="button" value="nextstep" />
  • 在 Dart 文件中:

  • void main() { 
    while(true) {
    // Do something here to pause the loop
    // until the nextstep button is pressed
    }
    }

    最佳答案

    您可以简单地添加 keyPress您的 input 上的听众开始一些额外的处理。

    void main() { 
    final input = querySelector("#nextstep");
    input.onKeyPress.listen((e){
    nextProcessingStep();
    });
    }

    关于dart - 停止执行 Dart 程序,直到按下某个键,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14209993/

    24 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com