Flutter web-禁用空格键滚动?

Flutter web- disable spacebar to scroll?

我正在 flutter web 上构建一个应用程序,最近在我的程序中添加了一个文本字段。最近的一个新更新添加了对使用空格键滚动的支持。有什么方法可以禁用或拦截最近实现的空格键滚动功能吗? 可以在开发频道的任何可滚动列表(例如列表视图)上复制空格键滚动功能

Body(child:ListView(children:[TextField(),Container(height:10000,width:100)]))

覆盖应用程序快捷方式以恢复到以前的行为:

  Widget build(BuildContext context) {
    final shortcuts = WidgetsApp.defaultShortcuts;
    shortcuts[LogicalKeySet(LogicalKeyboardKey.space)] = ActivateIntent();
    return MaterialApp(
      shortcuts: shortcuts,
      // ...
    );
  }