- Flutter SDK. See the Flutter SDK installation instructions
- Android mobile; needed for debugging
- An IDE that supports Flutter. You can install Android Studio, IntelliJ IDEA, or Visual Studio Code and install the Flutter and Dart plugins to enable language support and tools for refactoring, running, debugging, and reloading your web app within an editor
- To set up the correct channel and upgrade to latest Flutter SDK
flutter channel stable
flutter upgrade
- To check if everything is working (Launch VSCode or Android Studio before)
flutter doctor
- Run all the commands above to set up Flutter correctly
- Clone this repository locally
- Run
flutter pub get
to fetch all packages - Delete build folder under
android/app
if you find any - Head over to Agora, create a new account or login to your existing account
- Create a new project and copy the App ID of that project.
- Back to our app, create a .env file under project level and put
APP_ID=your_app_ID
in the file. - Run
flutter run
to run the project locally (considering your have chrome browser installed)