Answers for "flutter command to open an existing project"

0

run existing project flutter

Project Setup

1. Install package dependencies:
	
    flutter pub get

2. Run the project by running command:

	flutter run
	flutter run -d chrome
    
3. Use one of these commands to build the project:

	flutter build apk
	flutter build ios
	flutter build appbundle
    
4. If any issue (run the below command to troubleshoot):

	flutter doctor
Posted by: Guest on April-07-2021

Code answers related to "flutter command to open an existing project"

Browse Popular Code Answers by Language