✨Quick Start Tutorial

Quick Start Tutorial

This tutorial will help you create your first Flutter app using Flutter Bunny CLI.

Creating Your First Project

The easiest way to start is with the interactive setup:

flutter_bunny create

This will start the interactive wizard, which will guide you through:

  1. Entering a project name

  2. Selecting an architecture

  3. Choosing a state management solution

  4. Selecting features

  5. Adding core modules

Follow the prompts, and the wizard will generate your project based on your selections.

Quick Creation

If you want to create a project quickly with minimal configuration:

This command creates a new Flutter app with:

  • Default architecture (Clean Architecture)

  • Default state management (Provider)

  • Basic features (Authentication)

  • Core modules (Theme Manager, Network Layer)

Custom Creation

For full control over your project configuration:

Project Structure

After generation, your project will have a structure similar to this (varies based on selected architecture):

Running Your Project

Navigate to your project directory:

Get dependencies:

Run the app:

Last updated