
* 겪고 있는 문제 상황을 최대한 자세하게 작성해주세요.
* 문제 해결을 위해 어떤 시도를 해보았는지 구체적으로 함께 알려주세요.
요 상황인대요, 왼편에 앱화면에 헬로 플러터가 전혀 적용이 안되고 있습니다

작성한 코드 및 에러 메세지
class MyApp extends StatelessWidget {
const MyApp({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return MaterialApp(
debugShowCheckedModeBanner: false,
home: Scaffold(
appBar: AppBar(),
body: Text("Hello Flutter"),
),
);
}
