Skip to content

poolup-devs/poolup_flutter

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

PoolUp Flutter

This is the mobile frontend code repository for PoolUp: made with Flutter.
For additional guidance/help, email [email protected] or your current Engineering Manager.

Local Development Setup

  1. You will need to install the Flutter SDK, which can be done by following instructions in the installation docs.
  2. 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.
  3. Once your emulator is setup, within the root directory, do flutter run. This should start the app in your emulator.
  4. Once your app is running, open the codebase with an IDE (i.e. VS Code, Sublime Text), and then get coding! :)

Flutter Dev Tips

  1. If flutter run returns an error, try flutter devices to return list of connected devices recognized by Flutter.
  2. Run flutter doctor to check for any missing dependencies either for Flutter or Android Studio/XCode.
  3. Flutter supports hot reloading, so once app starts running, press r in the terminal to apply live changes you have made, or R to reload entire application.