Created
April 18, 2024 00:56
-
-
Save abairo/6cbb39e7c385a73e7e4972038dc4d623 to your computer and use it in GitHub Desktop.
Flutter Development Environment
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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