flutter_templify 0.1.2 flutter_templify: ^0.1.2 copied to clipboard
flutter_templify is a customizable CLI tool for managing Flutter app templates with YAML-based project definitions.
- Create your own template.
name: "awesome-template"
description: "A basic template for MVP Flutter apps"
domain: micazi.dev
platforms:
- ios
- android
- web
isPackage: false
structure:
- main.env
- anotherFile.MD
- pubspec.yaml: "src/templates/pubspec.yaml"
- lib/:
- screens/
- models/
- widgets/
- assets/:
- images/
- fonts/:
- someFont/
- Add the template to your local repo.
flutter_templify templates add -f path/to/template.yaml
- Create your project!
flutter_templify create -t awesome-template -n awesome_project