Skip to main content

Getting Started

Requirement

  • Dart SDK 3.2 - latest
  • Flutter: 3.16.0 - latest
note

Installation

  1. Install Morpheme CLI

  2. 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.

  3. Run your emulator or connect your device

  4. 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.

info

If you want install manually you need to follow this step:

  1. 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.git
  2. Remove the .git folder and initialize the new one.

    cd my-app
    rm -rf .git
    git init
    git commit -am "initial commit"
  3. Init configuration

    morpheme init
    morpheme config
  4. Install the dependencies

    morpheme get
  5. Run your emulator or connect your device

  6. 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.