This is the mobile frontend code repository for PoolUp: made with Flutter.
For additional guidance/help, email [email protected] or your current Engineering Manager.
- You will need to install the Flutter SDK, which can be done by following instructions in the installation docs.
- You will also need an Android/iOS emulator installed on your computer in order to run the app locally. Refer to installation instructions for either Android Studio or XCode.
- Once your emulator is setup, within the root directory, do
flutter run
. This should start the app in your emulator. - Once your app is running, open the codebase with an IDE (i.e. VS Code, Sublime Text), and then get coding! :)
- If
flutter run
returns an error, tryflutter devices
to return list of connected devices recognized by Flutter. - Run
flutter doctor
to check for any missing dependencies either for Flutter or Android Studio/XCode. - Flutter supports hot reloading, so once app starts running,
press
r
in the terminal to apply live changes you have made, orR
to reload entire application.