Error: Couldn't resolve the package 'intl' in 'package:intl/intl.dart'. lib/main.dart:3:8: Error: Not found: 'package:intl/intl.dart' import 'package:intl/intl.dart';
해결방법 >
1) pubspec.yaml 파일에 패키지 추가
dependencies:
flutter:
sdk: flutter
intl: ^0.19.0 # <- 이 부분을 추가
2) 그 후 패키지 설치하기
flutter pub get
문제원인 >
실제로 intl 패키지가 설치되어 있지 않아서 문제가 됩니다.