인프런 커뮤니티 질문&답변

김용해님의 프로필 이미지
김용해

작성한 질문수

[2024 최신] [코드팩토리] [초급] Flutter 3.0 앱 개발 - 10개의 프로젝트로 오늘 초보 탈출!

ErrorSummary('No MediaQuery widget ancestor found.'),에러가 뜹니다..

작성

·

285

0

bool debugCheckHasMediaQuery(BuildContext context) {
  assert(() {
    if (context.widget is! MediaQuery && context.getElementForInheritedWidgetOfExactType<MediaQuery>() == null) {
      throw FlutterError.fromParts(<DiagnosticsNode>[
        ErrorSummary('No MediaQuery widget ancestor found.'),
        ErrorDescription('${context.widget.runtimeType} widgets require a MediaQuery widget ancestor.'),
        context.describeWidget('The specific widget that could not find a MediaQuery ancestor was'),
        context.describeOwnershipChain('The ownership chain for the affected widget is'),
        ErrorHint(
          'No MediaQuery ancestor could be found starting from the context '
          'that was passed to MediaQuery.of(). This can happen because you '
          'have not added a WidgetsApp, CupertinoApp, or MaterialApp widget '
          '(those widgets introduce a MediaQuery), or it can happen if the '
          'context you use comes from a widget above those widgets.',
        ),
      ]);
    }

githubs 파일만 가져와서 실행했는데 error가 나오네요..

답변 1

1

코드팩토리님의 프로필 이미지
코드팩토리
지식공유자

안녕하세요!

저도 실행해봤는데 잘 실행되는걸로 확인했습니다.

여전히 실행이 안되신다면 저희 커뮤니티 아무곳이나 들어오셔서 원격 잡아주시면 제가 직접 봐드리겠습니다!

김용해님의 프로필 이미지
김용해
질문자

해결했슴돠

김용해님의 프로필 이미지
김용해

작성한 질문수

질문하기