본문 바로가기
728x90

개발463

flutter 최신 버전 doctor 안될 때 https://stackoverflow.com/questions/75238629/unsupportedclassversionerror-while-flutter-doctor-android-licenses-macos UnsupportedClassVersionError while 'flutter doctor --android-licenses' MacOS System Settings: MacOS Ventura Android Studio Electric Eel I am installing Flutter on my Intel Mac. After Running flutter doctor The outcome is this: [✓] Flutter (Channel stable, 3.7.0, on macOS... stack.. 2023. 2. 22.
GetX 사용 시 Obx 동작하지 않을 때 확인할 사항! GetX 사용 시 Model이 완전히 바뀐 것이 아니라면 GetX의 Obx 가 제대로 동작하지 않을 수 있다. 그러므로, Model을 완전히 바꾸어 줘야한다. ListModel newList = ListModel.fromMap(originList!.toJson()); 이런 식으로 새로운 List를 만들어주는 것이다. 이것은 freezed의 copywith 과도 비슷한데, 나중에 시간이 되면 모든 모델일 freezed로 바꿔줘야 이런 문제가 안 생길 것 같다. 2023. 2. 21.
Android Studio Code 정리 https://charging.tistory.com/129 안드로이드 스튜디오 코드 줄바꿈 선 길이 늘이기 안드로이드 스튜디오로 코딩을 하다보면 가운데 선에 의해서 자동으로 줄바꿈이 되는경우가 있습니다. Ctrl + Alt + L 단축키를 누르면 자동 줄바꿈이 되는데요 줄바꿈선을 기준으로 줄이 바뀝니 charging.tistory.com 줄바꿈 선 길이 늘이기를 해도 flutter 코드 줄 바꿈선이 늘어나지 않을 것이다. Dart는 Dart 따로 해줘야하나보다 Line length 80 -> 200 2023. 2. 21.
Chat GPT로 flutter getX 오류 해결 I found error in flutter. List get matjipList => _matjipList.value; and with this, I wrote code -> matjipList[index] = newMatjipModel; but Obx not refreshed. 바꿨는데 왜 안되지? 2번의 답변을 보면서.. 생각한 게 정의한 거는 문제가 안되는데 내가 _matjipList를 사용해야하는데 matjipList를 사용한 실수를 깨달았다! 가끔 코드를 쓰다보면 왜 잘 못 되었는 지 알 수 없어서 주화입마에 걸리는 상황이 존재하는 데, 이런 걸 Chat GPT라는 멋진 비서를 사용하면 사람보다 훨씬 빨리 정확하게 나의 문제를 찾아주고 해결해준다! 2023. 2. 17.
728x90