Update Getting Dependencies with Flutter Doctor authored by Andrew Januszko's avatar Andrew Januszko
# What Is Flutter Doctor?
In order to build your project for multiple platforms, flutter needs to call several 3rd party dependencies. `flutter doctor` lets you view these dependencies and see if you need to install/repair any of them. The `-v` modifier gives you a more detailed view of flutter doctor and its dependencies, and allows you to see each component it depends on. Think of it like giving your flutter installation a check up to make sure everything is working how it should be.
In order to build your project for multiple platforms, flutter needs to call several 3rd party dependencies. `flutter doctor` lets you view these dependencies and see if you need to install/repair any of them. The `-v` modifier gives you a more detailed view of flutter doctor and its dependencies, and allows you to see each component it depends on. Think of it like giving your flutter installation a check up to make sure everything is set up and working how it should be.
# Flutter Dependencies
......@@ -26,7 +26,9 @@ Since Flutter can be used on multiple platforms, there are some dependencies it
- Android Studio
- Android Studio is a fork of the JetBrains IntelliJ IDE developed by Google and is primarily used for developing Android applications.
- If you need to install Android Studio, you can download it from the [official Android Developer website](https://developer.android.com/studio).
- VS Code
- Visual Studio Code
- Visual Studio Code is an editor developed by Microsoft for source-code editing.
- If you need to install Visual Studio Code, you can find it [here](https://code.visualstudio.com/download).
- Connected Device
- This is a list of all the physical devices you have connected to your computer for Flutter development. This should be empty or throw a warning when you first install flutter.
- HTTP Host Availability
......
......