반응형 SMALL getview1 Flutter의 @immutable 경고 해결하기: GetX 사용 시 완벽 가이드 Flutter 와 GetX를 사용하다 보면 다음과 같은 경고 메시지를 마주칠 수 있습니다:This class (or a class that this class inherits from) is marked as '@immutable', but one or more of its instance fields aren't final 이 오류는 GetView 클래스에서 controller 필드를 오버라이드하려고 할 때 발생합니다. 이 글에서는 이 문제가 발생하는 이유와 모범 사례에 따른 깔끔한 해결책을 제시하겠습니다.문제 이해하기GetX를 사용할 때 흔히 범하는 실수를 살펴보겠습니다:class SearchScreen extends GetView { SearchScreen({super.key}); @overri.. 2025. 3. 14. 이전 1 다음 반응형 LIST