This is the mobile frontend code repository for PoolUp: made with Flutter.
For additional guidance/help, email justinhan1997@gmail.com 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 runreturns an error, tryflutter devicesto return list of connected devices recognized by Flutter. - Run
flutter doctorto check for any missing dependencies either for Flutter or Android Studio/XCode. - Flutter supports hot reloading, so once app starts running,
press
rin the terminal to apply live changes you have made, orRto reload entire application.