Answers for "run new project flutter"

11

flutter create new project

$ flutter create my_app
$ cd my_app
$ flutter analyze
$ flutter test
$ flutter run lib/main.dart
Posted by: Guest on February-27-2021
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

Browse Popular Code Answers by Language