1. Home
  2. Docs
  3. Flutter Chat App
  4. Flutter Project Setup

Flutter Project Setup

Version we used on development machine

Flutter: 1.20.0
Dart: 2.9.0

Step 1:

To run our chat app, first we need to create new flutter project.

flutter create flutterchat --org com.mythemebox flutterchat
cd flutterchat

Note: Modify your organisation name base on your need.

In our case, the package name will be com.mythemebox.flutterchat

Step 2:

Copy all files from purchased (flutterchat/) files to newly created flutter project. Once you copied/replaced all files, execute

flutter pub get

This will download all dependencies

Step 3:

After completing the all steps (firebase setup, cloud function deploy), you can run the app

flutter run