when i run run flutter in vs code the enter, tab and space keys not working properly.
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
}
}
When i press enter my cursor cannot come to the next line. Similarlly the tab key and space key also not working.
I had the same problem with me just a before
tabwas not working and I solved it just pressingctrl+mshortcut on Windows.