Hi@akhtar,
Flutter has an inbuilt command to create a project. You can use the below-given command.
$ flutter create test_app
Creating project test_app...
test_app\.gitignore (created)
test_app\.idea\libraries\Dart_SDK.xml (created)
test_app\.idea\libraries\Flutter_for_Android.xml (created)
test_app\.idea\libraries\KotlinJavaRuntime.xml (created)
test_app\.idea\modules.xml (created)
test_app\.idea\runConfigurations\main_dart.xml (created)
test_app\.idea\workspace.xml (created)
test_app\.metadata (created)
test_app\android\app\build.gradle (created)
test_app\android\app\src\main\kotlin\com\example\test_app\MainActivity.kt (created)
test_app\android\build.gradle (created)
test_app\android\test_app_android.iml (created)
test_app\android\.gitignore (created)
test_app\android\app\src\debug\AndroidManifest.xml (created)
test_app\android\app\src\main\AndroidManifest.xml (created)
test_app\android\app\src\main\res\drawable\launch_background.xml (created)
test_app\android\app\src\main\res\mipmap-hdpi\ic_launcher.png (created)
test_app\android\app\src\main\res\mipmap-mdpi\ic_launcher.png (created)
test_app\android\app\src\main\res\mipmap-xhdpi\ic_launcher.png (created)
test_app\android\app\src\main\res\mipmap-xxhdpi\ic_launcher.png (created)
test_app\android\app\src\main\res\mipmap-xxxhdpi\ic_launcher.png (created)
test_app\android\app\src\main\res\values\styles.xml (created)
test_app\android\app\src\profile\AndroidManifest.xml (created)
test_app\android\gradle\wrapper\gradle-wrapper.properties (created)
test_app\android\gradle.properties (created)
test_app\android\settings.gradle (created)
test_app\ios\Runner\AppDelegate.swift (created)
test_app\ios\Runner\Runner-Bridging-Header.h (created)
test_app\ios\Runner.xcodeproj\project.pbxproj (created)
test_app\ios\Runner.xcodeproj\xcshareddata\xcschemes\Runner.xcscheme (created)
test_app\ios\.gitignore (created)
test_app\ios\Flutter\AppFrameworkInfo.plist (created)
test_app\ios\Flutter\Debug.xcconfig (created)
test_app\ios\Flutter\Release.xcconfig (created)
test_app\ios\Runner\Assets.xcassets\AppIcon.appiconset\Contents.json (created)
test_app\ios\Runner\Assets.xcassets\AppIcon.appiconset\Icon-App-1024x1024@1x.png (created)
test_app\ios\Runner\Assets.xcassets\AppIcon.appiconset\Icon-App-20x20@1x.png (created)
test_app\ios\Runner\Assets.xcassets\AppIcon.appiconset\Icon-App-20x20@2x.png (created)
test_app\ios\Runner\Assets.xcassets\AppIcon.appiconset\Icon-App-20x20@3x.png (created)
test_app\ios\Runner\Assets.xcassets\AppIcon.appiconset\Icon-App-29x29@1x.png (created)
test_app\ios\Runner\Assets.xcassets\AppIcon.appiconset\Icon-App-29x29@2x.png (created)
test_app\ios\Runner\Assets.xcassets\AppIcon.appiconset\Icon-App-29x29@3x.png (created)
test_app\ios\Runner\Assets.xcassets\AppIcon.appiconset\Icon-App-40x40@1x.png (created)
test_app\ios\Runner\Assets.xcassets\AppIcon.appiconset\Icon-App-40x40@2x.png (created)
test_app\ios\Runner\Assets.xcassets\AppIcon.appiconset\Icon-App-40x40@3x.png (created)
test_app\ios\Runner\Assets.xcassets\AppIcon.appiconset\Icon-App-60x60@2x.png (created)
test_app\ios\Runner\Assets.xcassets\AppIcon.appiconset\Icon-App-60x60@3x.png (created)
test_app\ios\Runner\Assets.xcassets\AppIcon.appiconset\Icon-App-76x76@1x.png (created)
test_app\ios\Runner\Assets.xcassets\AppIcon.appiconset\Icon-App-76x76@2x.png (created)
test_app\ios\Runner\Assets.xcassets\AppIcon.appiconset\Icon-App-83.5x83.5@2x.png (created)
test_app\ios\Runner\Assets.xcassets\LaunchImage.imageset\Contents.json (created)
test_app\ios\Runner\Assets.xcassets\LaunchImage.imageset\LaunchImage.png (created)
test_app\ios\Runner\Assets.xcassets\LaunchImage.imageset\LaunchImage@2x.png (created)
test_app\ios\Runner\Assets.xcassets\LaunchImage.imageset\LaunchImage@3x.png (created)
test_app\ios\Runner\Assets.xcassets\LaunchImage.imageset\README.md (created)
test_app\ios\Runner\Base.lproj\LaunchScreen.storyboard (created)
test_app\ios\Runner\Base.lproj\Main.storyboard (created)
test_app\ios\Runner\Info.plist (created)
test_app\ios\Runner.xcodeproj\project.xcworkspace\contents.xcworkspacedata (created)
test_app\ios\Runner.xcodeproj\project.xcworkspace\xcshareddata\IDEWorkspaceChecks.plist (created)
test_app\ios\Runner.xcodeproj\project.xcworkspace\xcshareddata\WorkspaceSettings.xcsettings (created)
test_app\ios\Runner.xcworkspace\contents.xcworkspacedata (created)
test_app\ios\Runner.xcworkspace\xcshareddata\IDEWorkspaceChecks.plist (created)
test_app\ios\Runner.xcworkspace\xcshareddata\WorkspaceSettings.xcsettings (created)
test_app\lib\main.dart (created)
test_app\test_app.iml (created)
test_app\pubspec.yaml (created)
test_app\README.md (created)
test_app\test\widget_test.dart (created)
Running "flutter pub get" in test_app... 4.1s
Wrote 72 files.
To know more about Flutter, join our Flutter Development Course today.