Flutter Deprecated Api Mass Fix

Flutter Deprecated API 대규모 수정 - withOpacity, DropdownButtonFormField, Switch 등

Flutter 프로젝트를 오래 유지하다 보면 flutter analyze가 수백 개의 deprecated 경고를 뱉는 시점이 온다. 기능은 잘 돌아가지만 Warning이 쌓이면 진짜 문제가 묻힌다. 이번에 한 번에 200개 넘는 deprecated 경고를 정리하면서 나온 패턴들을 정리한다. 진단: flutter analyze로 현황 파악 flutter analyze --no-pub --no-pub을 붙이면 pub 패키지 재분석을 건너뛰어 빠르다. 출력에서 카테고리별로 분류해보면 대부분 몇 가지 패턴이 반복된다. info • 'withOpacity' is deprecated ... • lib/core/theme/app_theme.dart:45:22 info • 'value' is deprecated and shouldn't be used. Use 'initialValue' instead ... info • 'activeColor' is deprecated ... Use 'activeThumbColor' instead. warning • Unused import: 'package:go_router/go_router.dart' ... 케이스 1: Color.withOpacity → withValues(alpha:) 가장 많이 나오는 deprecation이다. 거의 모든 색상 투명도 처리 코드가 해당된다. ...

2025-07-20 · 3분 소요 · Seunghan
개인정보처리방침 문의