Here are some basic Flutter commands that you may find useful:
flutter create : This command creates a new Flutter project with the specified project name.
flutter run: This command runs your Flutter app on the connected device or emulator.
flutter build: This command builds your Flutter app for release.
flutter test: This command runs your Flutter app's tests.
flutter doctor: This command checks your environment and displays a report of the status of your Flutter installation.
flutter clean: This command deletes the build/ directory, which is where compiled artifacts are stored.
flutter pub get: This command installs all the dependencies listed in your pubspec.yaml file.
8.. flutter pub upgrade: This command upgrades all the dependencies listed in your pubspec.yaml file to the latest version.
flutter pub publish: This command publishes your Flutter package to the Pub package manager.
flutter upgrade: This command upgrades your Flutter installation to the latest stable version.
flutter build : This command builds a release version of the Flutter app. The build_type can be one of apk, appbundle, or ios.
I hope these commands are helpful! Let me know if you have any questions.