
* 겪고 있는 문제 상황을 최대한 자세하게 작성해주세요.
* 문제 해결을 위해 어떤 시도를 해보았는지 구체적으로 함께 알려주세요.
안녕하세요, 저는 1-5강 실습중인데요ㅠ
코드스니펫에서 코드를 복사한 후 Run without debugging를 누르면 아래와 같은 에러가 발생합니다.
무엇이 문제일까요ㅜ

코드============================================================
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 MaterialApp(
debugShowCheckedModeBanner: false,
home: Scaffold(
appBar: AppBar(),
),
);
}
}
에러메시지=========================================================================
Launching lib\main.dart on sdk gphone64 x86 64 in debug mode...
main.dart:1
√ Built build\app\outputs\flutter-apk\app-debug.apk.
E/OpenGLRenderer(16316): Unable to match the desired swap behavior.
Connecting to VM Service at ws://127.0.0.1:51605/p5AJ9KTCct8=/ws
E/OpenGLRenderer(16316): Unable to match the desired swap behavior.
E/InsetsController(16316): InsetsSourceControl: {e9a20000 mType=statusBars initiallyVisible mSurfacePosition=Point(0, 0) mInsetsHint=Insets{left=0, top=0, right=0, bottom=0}} has no consumer.
D/EGL_emulation(16316): app_time_stats: avg=644.03ms min=18.54ms max=2548.39ms count=6
D/EGL_emulation(16316): app_time_stats: avg=1398.57ms min=558.62ms max=3076.98ms count=3
E/OpenGLRenderer(16316): Unable to match the desired swap behavior.
E/InsetsController(16316): InsetsSourceControl: {fa010001 mType=navigationBars initiallyVisible mSurfacePosition=Point(0, 0) mInsetsHint=Insets{left=0, top=0, right=0, bottom=0}} has no consumer.
D/EGL_emulation(16316): app_time_stats: avg=914.73ms min=138.19ms max=1691.26ms count=2
E/InsetsController(16316): InsetsSourceControl: {6330000 mType=statusBars initiallyVisible mSurfacePosition=Point(0, 0) mInsetsHint=Insets{left=0, top=0, right=0, bottom=0}} has no consumer.
Application finished.
Exited (sigterm)
