TIL/Flutter
-
Flutter 샘플 앱 구동TIL/Flutter 2023. 4. 17. 06:32
먼저 Wonderous의 깃허브에서 소스 코드를 clone해옵니다. gskinnerTeam/flutter-wonderous-app: A showcase app for the Flutter SDK. Wonderous will educate and entertain as you uncover information about some of the most famous structures in the world. (github.com) GitHub - gskinnerTeam/flutter-wonderous-app: A showcase app for the Flutter SDK. Wonderous will educate and entertain as you unc A showcase app for the Flut..
-
Flutter 설치 방법TIL/Flutter 2023. 4. 16. 20:19
1. Flutter SDK를 다운로드받습니다. Windows install | Flutter Windows install How to install on Windows. docs.flutter.dev 2. 압축을 풀고 나온 flutter 폴더를 원하는 곳으로 옮깁니다. (ex : C:\src) 3. 위의 flutter 폴더 경로를 그대로 복사하여 환경변수에 등록합니다. 4. flutter doctor 명령어를 실행합니다. 최초 설치 시에는 Android toolchain 관련 이슈도 발생하는데 안드로이드 스튜디오 설치 이후 flutter doctor 실행 시 보이는 명령어를 입력하면 해결할 수 있습니다. Windows Version은 master로 채널을 변경하고 upgrade하면 해결할 수 있는 문제지..