You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
### To create a flutter project
flutter create --org ext.domain app_name
### Add a dependency to pubspec.yaml.
flutter pub add <dependency>
### Run and build a Flutter Project
flutter run
flutter build
### Run Build Runner
dart run build_runner watch --delete-conflicting-outputs
### Generate localizations for the Flutter project
flutter gen-l10n <DIRECTORY>
### Delete the build/ and .dart_tool/ directories
flutter clean
### Devices and Screenshot
flutter devices
flutter screenshot
### Doctor and Upgrade
flutter doctor
flutter upgrade
### Upgrade
flutter pub get
flutter pub outdated
flutter pub upgrade
IOS
If ios build is not working
cd ios
pod cache clean --all
flutter clean && rm ios/Podfile.lock pubspec.lock && rm -rf ios/Pods ios/Runner.xcworkspace
pod deintegrate
pod setup
pod install --verbose
pod repo update
pod -–version
pod update
### Update Brew
brew update
brew upgrade
### Install CocoaPods
brew install cocoapods