حل مشاكل Flutter عند تشغيل المشروع على نظام تشغيل ios
اضف الاكواد التاليه في terminal عند تشغيل المشروع
flutter clean
flutter pub get
cd ios
pod init
pod cache clean –all
pod deintegrate
rm Flutter/Flutter.podspec
rm Podfile.lock
rm -rf .symlinks/
cd ..
flutter clean
flutter pub get
cd ios
pod update
pod repo update
pod install –repo-update
pod update
pod install
cd ..
flutter run


