Flutter 개발 하던 중 사용 중이던 InteliJ가 매우 느려졌다.
InteliJ의 문제라고 생각해 VM Option 조정, 캐시 삭제, Index 파일 제외, Dart 버전 다운그레이드 등 다양한 방법을 시도해 봤지만, 증상은 동일했다.
Dart Analyzer가 매우 느려진 현상을 발견해 관련 구글링을 한 결과 custom_lint 패키지를 업데이트 하면 된다는 글을 보고 최근 custom_lint 패키지를 추가한 게 생각났다. 해당 패키지를 활용하지 않던지라 과감하게 pubspec.yaml에서 제거 후 flutter clean & get을 하니 정말 거짓말처럼 정상화 됐다.
다른 Flutter 개발자분들도 비슷한 현상을 겪으신다면 custom_lint 패키지를 체크해보시길 바랍니다.
https://github.com/dart-lang/sdk/issues/55281#issuecomment-2027028048
Dart Analyzer very slow/stuck · Issue #55281 · dart-lang/sdk
Dart & Flutter has suddenly become unusable slow in VSCode. Intellisense won't load within 30+ seconds, syntax highlighting won't update, jumping to code definitions loads infinitely, etc. This see...
github.com
'Flutter' 카테고리의 다른 글
에뮬레이터 localhost(127.0.0.1) 안될 때 (0) | 2025.01.05 |
---|---|
injectable 패키지 (DI 관련) (0) | 2024.03.24 |
WillPopScope이 안된다면?? (PopScope 사용하기) (0) | 2023.08.28 |
Flutter - Supported OS (0) | 2023.08.07 |
Flutter - invalid_annotation_target 경고 없애기 (0) | 2023.06.02 |