Skip to content

Instantly share code, notes, and snippets.

@abairo
Created April 18, 2024 00:56
Show Gist options
  • Save abairo/6cbb39e7c385a73e7e4972038dc4d623 to your computer and use it in GitHub Desktop.
Save abairo/6cbb39e7c385a73e7e4972038dc4d623 to your computer and use it in GitHub Desktop.
Flutter Development Environment
install_flutter () {
echo "installing flutter..."
sudo snap install flutter --classic
}
display_flutter_sdk_path () {
echo "displaying flutter sdk path..."
flutter sdk-path
}
display_flutter_install_health () {
echo "displaying flutter install health..."
flutter doctor
}
install_android_studio () {
echo "installing android studio..."
sudo snap install android-studio --classic
}
install_flutter
display_flutter_sdk_path
display_flutter_install_health
install_android_studio
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment