...
This is a setup for any Flutter project on a Windows 10/11 device, and is what we will be using to setup IMACS. You only have to go through the setup once. Anything that you need to download can be found inthe References section. Make sure Git is properly setup
Setting up Flutter
Install Flutter if you do not have it installed. You can also refer to the link for further guidance
When unzipping, Do not keep the version number as Flutter has an automatic update feature. When you extract the files, make sure you do so into a directory where there are NO spaces
Add flutter to path [flutter unzip location]/flutter/bin
Disable analytics by running the following in any terminal
flutter config --no-analytics
dart --disable-analytics.
In VS Code:
Go to settings: Ctrl+, OR File→Preferences→Settings
Search for telemetry
Set to off
Run
flutter doctor
. This command gives you a list of dependencies flutter requries before you can properly run your app. If you already have all the dependencies, you should see something like this in your terminal. If not, please follow the associated links the command gives you to set them up, or refer to the documentation below.
...