Getting Started
Requirement
- Dart SDK 3.2 - latest
- Flutter: 3.16.0 - latest
- Dart SDK Installation Dart SDK
- Flutter SDK Installation Flutter SDK
Installation
Install Morpheme CLI
Create new project with run command:
morpheme create my-app
To see all available options and flags, run
morpheme create --help
or check in here.Run your emulator or connect your device
Now you can run apps in VS Code with press
F5
or you can run via terminal with command:morpheme run
To see all available options and flags, run
morpheme run --help
or check in here.
If you want install manually you need to follow this step:
Clone source this from repository Morpheme Flutter Starter Kit
# via SSH
git clone git@github.com:morphemedesign/morpheme-flutter.git
# via HTTPS
git clone https://github.com/morphemedesign/morpheme-flutter.gitRemove the
.git
folder and initialize the new one.cd my-app
rm -rf .git
git init
git commit -am "initial commit"Init configuration
morpheme init
morpheme configInstall the dependencies
morpheme get
Run your emulator or connect your device
Now you can run apps in VS Code with press
F5
or you can run via terminal with command:morpheme run
To see all available options and flags, run
morpheme run --help
or check in here.