커뮤니티
포인트
쿠폰
내 강의실
국비 신청 내역
증명서
계정
로그아웃
학습 질문
개발 일지
나의 활동
답변 완료
Run without debugging 실행에러 (Unable to match the desired swap behavior.)
[왕초보] 플러터(Flutter)로 시작하는 앱개발 종합반 v0
1주차
북마크
최*림
댓글
12
추천
0
조회수
25
조회수
25
답변 완료

* 겪고 있는 문제 상황을 최대한 자세하게 작성해주세요.

* 문제 해결을 위해 어떤 시도를 해보았는지 구체적으로 함께 알려주세요.


안녕하세요, 저는 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)


취소
 공유
취소
댓글 0
댓글 알림
나의얼굴