Project Setup

Install Flutter:

Visit flutter official website : flutter.dev for full install guide. if you prefer video tutorials, we recommend this playlist that will guide throw the full installation process: https://www.youtube.com/playlist?list=PLSzsOkUDsvdtl3Pw48-R8lcK2oYkk40cm

Check Flutter version:

run following command:

flutter --version

if your flutter setup was correct, you will see something similar.

Make sure you use Latest Flutter STABLE version: v 3.3.X

Change App Icon

Replace the image inside res folder. Make sure you use same name app_icon.png.

then run following command:

> flutter pub get
> flutter pub run flutter_launcher_icons:main

Make a user as Admin

To set your profile account as admin, so that you will be able to ban, remove posts and messages. go to Firestore console, and change field isAdmin to true

Build & Publish Flutter App

To build and publish Android App, follow the official Documentation Android and iOS

Last updated