September 2019
Beginner
512 pages
12h 52m
English
Starting a new Dart project requires a few simple steps: create an empty folder, add a pubspec.yaml file to it, and describe the package with a name, version, and so on. Afterward, you add the necessary files gradually.
In general, most of the files and their structures do not change from package to package, so creating the whole Dart package structure every time can be tedious. This is why the Stagehand tool was created—to generate Dart scaffolding projects.
To run the Stagehand tool, we first need to install it on our system. In a properly configured Dart environment, run the following pub command in a Terminal to install it:
pub global activate stagehand
Read now
Unlock full access