-
Notifications
You must be signed in to change notification settings - Fork 4
Getting Started
- Visit https://flutter.dev/docs/get-started/install
- Select your operating system and download the .zip file
- Make a note of the path where you keep the
flutterfolder. This will be used in step 3
- Make a note of the path where you keep the
- Update your path variable to include flutter
export PATH="$PATH:[PATH_OF_FLUTTER_GIT_DIRECTORY]/bin"- Ensure that flutter is installed by typing
which flutterinto the command line - Run
flutter doctorin the command line to make sure everything is up-to-date, and ready to go with flutter dependencies
Now that you have flutter up and running, it's time to clone the In The Loop repository from Github.
-
Open an IDE of choice. Visual Studio Code and Android Studio are recommended for developing Flutter applications.
-
Create a new project
-
Open the command line, and type:
git clone https://github.com/InTheLoopStudio/pangolin.git
Official flutter.dev documentation on running app: https://flutter.dev/docs/get-started/test-drive
Visual Studio Code (https://code.visualstudio.com) and Android Studio (https://developer.android.com/studio) are the two most commonly used IDE's for developing Flutter apps.
Setup should be relatively similar between platforms. Simply open the application, select your project folder, and begin working.
VSCode:
-
Select the "Chrome (web-javascript)" button and change it to the desired platform to test on (either iOS or Android)
-
Select Run > Start Debugging to initialize the app in debug mode