Flutter로 개발하던 도중, 해당 에러가 발생했다.
plugin을 새로 pubspec.yaml
에 추가한뒤, ios simulator에 build를 했는데 다음과 같은 에러가 발생했다.
GeneratedPluginRegistrant.m:10:9: fatal error: module ‘webview_flutter’ not found
✅ 해결방법
1. flutter clean
2. podfile / podfile.lock 파일 삭제
3. flutter pubs get
4. pod init
5. pod install
차례대로 terminal에서 명령어를 입력하면 다시 잘 빌드 된다.