My flutter app runs perfect on android device but on trying to launch on ios device, it runs the pod install command forever.
Run flutter app on ios device.
I run many command but still this problem not fixed. I created new project but same problem why I face this problem please give me any working solution.
>Solution :
Very simple open your terminal and this command.
cd ios/
pod install
cd ../
flutter run
If this method not work then you try this
Step 1.
Delete podfile
Step 2.
Open terminal and write this commands
Flutter clean
Flutter pub get
cd ios/
pod install
cd ../
flutter run