当我在 VS Code 中运行 run flutter 时,回车键、制表符和空格键无法正常工作。
import 'package:flutter/material.dart';
void main() {
runApp(MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return Container(); //my cursor is in center of the brackets
}
}
当我按 Enter 时,我的光标无法到达下一行。同样,Tab 键和空格键也不起作用。
我也有同样的问题。只需进入 vscode 设置并搜索
format
.
选择
Also modified in Dart > User
和 Format On Save
旁边的 Format On Type
,然后转动它们 OFF
为我解决了问题
转到设置搜索格式转到 Dart 并禁用 Dart:启用 Sdk Formatter
我之前也遇到过同样的问题
tab
不起作用,我只需按一下就解决了
ctrl+m
Windows 上的快捷方式。