Run This App
Open your terminal, navigate to your project path and execute the following command to run this app.
flutter run
Commonly used commands
๐ฆ Update iOS Podsโ
cd ios
pod init
pod update
pod install
cd ..
๐งน Clean Pub Cacheโ
flutter clean
flutter pub cache clean
flutter pub get
๐ง Repair Pub Cacheโ
flutter clean
flutter pub cache repair
flutter pub get
๐ฑ Generate Android APKโ
flutter build apk --split-per-abi
open build/app/outputs/flutter-apk/
๐ ๏ธ Solve Common iOS Errorsโ
flutter clean
rm -Rf ios/Pods
rm -Rf ios/.symlinks
rm -Rf ios/Flutter/Flutter.framework
rm -Rf Flutter/Flutter.podspec
rm ios/podfile.lock
cd ios
pod deintegrate
sudo rm -rf ~/Library/Developer/Xcode/DerivedData
flutter pub cache repair
flutter pub get
pod install
pod update