我正在构建一个应用程序上的扑动web和最近添加了一个文本字段到我的程序。最近的一个新更新增加了对使用空格键滚动的支持。有没有办法禁用或拦截空格键滚动功能最近实现?空格键滚动功能可以在开发频道的任何可滚动列表上复制(例如listview)
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,
// ...
);
}