23
loading...
This website collects cookies to deliver better user experience
brew install --cask flutter
Note: At this point, it might be that I have some extra stuff already installed since it has overlap coming from Ionic.
flutter doctor
Xcode
: Setup and installed also accept all licensesChrome
: As your browserAndroid Studio
: For the Android buildsJava
: Needed for Android buildsVS Code
: For editing the softwarebrew install --cask google-chrome
brew install --cask android-studio
brew install --cask visual-studio-code
flutter create flutter_app
flutter_app
without code inside. Let's navigate to this folder.cd flutter_app
flutter run
lib/main.dart
this is where a Flutter app will start.23