일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | |
7 | 8 | 9 | 10 | 11 | 12 | 13 |
14 | 15 | 16 | 17 | 18 | 19 | 20 |
21 | 22 | 23 | 24 | 25 | 26 | 27 |
28 | 29 | 30 |
- not working
- 에러
- TCP/IP모델
- Flutter
- Set ID
- 플러터
- 프로그래머스
- project flow
- StringUtils.isEmpty
- VerticalMultiDragGestureRecognizer
- foreground
- 안드로이드
- allowBackup
- 안보내짐
- Chrome Developer Tools
- 앱
- runSpacing
- freezed
- StringUtils.isBlank
- gestureRecognizers
- 두 수의 나눗셈
- 플루터
- 웹뷰
- Could not create service of type FileAccessTimeJournal using
- TextFormField
- Flutter SDK
- 크롬개발자도구
- carousel slider
- 입력 커서
- fullBackupContent
- Today
- Total
목록분류 전체보기 (87)
흰오목눈이야 개발하자
자바를 공부하고 안드로이드에서 코딩할 때는 변할 수 없는 값(=재할당 할 수 없는 값)을 설정할 때 대체로 final을 사용했습니다. 다트라는 언어를 배우고 플러터 코딩을 할 때는 final만 있는 게 아니라 const도 있어서 둘 다 사용이 가능했는데 이 차이를 몰라 정리를 해보려 합니다. 변하지 않는 값을 지정할 때 아래와 같이 사용할 수 있습니다. const String nameConst = "Shu"; final String nameFinal = "Shu"; 공통점은 한 번 지정하면 값을 변경할 수 없습니다. (= 재할당 불가) 예) const String nameConst = "Shu"; final String nameFinal = "Shu"; nameConst = "Shua"; // error..

flutter doctor를 실행하고 iOS와 관련된 부분에서 문제가 있었다. [!] Xcode - develop for iOS and macOS (Xcode 13.3) • Xcode at /Applications/Xcode.app/Contents/Developer • Build 13E113 ✗ CocoaPods not installed. CocoaPods is used to retrieve the iOS and macOS platform side's plugin code that responds to your plugin usage on the Dart side. Without CocoaPods, plugins will not work on iOS or macOS. For more info, see h..
flutter doctor를 실행하고 iOS와 관련된 부분에서 문제가 있었다. [✗] Xcode - develop for iOS and macOS ✗ Xcode installation is incomplete; a full installation is necessary for iOS development. Download at: https://developer.apple.com/xcode/download/ Or install Xcode via the App Store. Once installed, run: sudo xcode-select --switch /Applications/Xcode.app/Contents/Developer sudo xcodebuild -runFirstLaunch ✗ CocoaPod..

문제 - Flutter doctor를 실행한 후 아래와 같은 문제가 발생함. [!] Android toolchain - develop for Android devices (Android SDK version 30.0.2) • Android SDK at /Users/tester/Library/Android/sdk • Platform android-31, build-tools 30.0.2 • Java binary at: /Applications/Android Studio.app/Contents/jre/Contents/Home/bin/java • Java version OpenJDK Runtime Environment (build 11.0.10+0-b96-7281165) ! Some Android licens..

문제 - Flutter doctor를 실행한 후 아래와 같은 문제가 발생함. [!] Android toolchain - develop for Android devices (Android SDK version 30.0.2) • Android SDK at /Users/tester/Library/Android/sdk ✗ cmdline-tools component is missing Run `path/to/sdkmanager --install "cmdline-tools;latest"` See https://developer.android.com/studio/command-line for more details. ✗ Android license status unknown. Run `flutter doctor --..

1. Visual Studio를 다운한다. https://code.visualstudio.com/ Visual Studio Code - Code Editing. Redefined Visual Studio Code is a code editor redefined and optimized for building and debugging modern web and cloud applications. Visual Studio Code is free and available on your favorite platform - Linux, macOS, and Windows. code.visualstudio.com 2. Flutter(플러터) 플러그인 설치하기 - 왼쪽 메뉴 마지막에 있는 Extensions을 클릭 후..

맥 Flutter SDK 설치하기 1. 맥 사양 확인 - 맨 위의 메뉴에서 애플 아이콘을 클릭하고 About This Mac을 클릭하여 사양을 확인한다. 2. 해당하는 파일 선택하여 다운로드하고 압축을 푼다. 3. 다운로드한 파일의 경로를 설정한다. 1) 터미널에 아래의 명령문으로 경로를 설정하거나 $ export PATH="$PATH:`pwd`/flutter/bin" - 맥 다운로드 파일 경로 확인 방법 : https://support.apple.com/ko-kr/guide/mac-help/mchlp1774/mac Mac에서 파일, 폴더 및 디스크 정보 얻기 Mac의 Finder에서 파일, 폴더 또는 디스크에 대한 크기, 생성일, 최근 수정일 및 권한과 같은 정보를 얻을 수 있습니다. support.a..