본문 바로가기
반응형

Development Solutions/Flutter & Dart63

How to solve "could not find dart in your flutter sdk" when you build flutter project 플러터 빌드 시 could not find dart in your flutter sdk 에러 해결 방법How to solve "could not find dart in your flutter sdk" when you build flutter project   방법 1. 간단한 해결 VS code를 이용중이라면 Flutter와 Dart 익스텐션을 제거했다가 다시 설치하면 된다. 방법2. 본질적인 해결 1. 환경변수에 flutter, dart 경로 추가export PATH="$PATH:/Users/sjh/development/flutter/bin"export PATH="$PATH:/Users/sjh/development/flutter/bin/cache/dart-sdk/bin"source ~/.zshrc #.. 2024. 6. 5.
Description of Flutter's state management library provider for beginners (입문자를 위한 Flutter의 상태관리 라이브러리 Provider 설명) 입문자를 위한 Flutter의 상태관리 라이브러리 Provider 설명Description of Flutter's state management library provider for beginners  Flutter의 상태관리 라이브러리 Provider에 대한 설명Flutter에서 상태 관리는 중요한 주제 중 하나입니다. 상태 관리란 사용자의 인터페이스와 애플리케이션의 데이터가 일관되도록 유지하는 것을 의미합니다. 다양한 상태 관리 솔루션 중에서 `Provider`는 Flutter 개발자들 사이에서 많이 사용되는 패키지입니다. 이 글에서는 Provider의 기본 개념과 사용 방법, 그리고 예제 프로젝트를 통해 이해를 돕고자 합니다. Provider란 무엇인가?`Provider`는 상태 관리 및 DI(De.. 2024. 5. 27.
[Java][Flutter] Gradle과 JDK 버전 확인 및 변경 방법 How to check and change Gradle and JDK versionsGradle과 JDK 버전 확인 및 변경 방법[Java][Flutter] Gradle과 JDK는 Android 애플리케이션을 빌드하는 데 필수적인 요소입니다. 이들 간의 호환성은 프로젝트의 성공적인 빌드와 실행에 매우 중요합니다. 이 글에서는 Gradle과 JDK 버전의 호환성을 확인하고, 필요에 따라 버전을 변경하는 방법에 대해 설명합니다. (Eng> Gradle and JDK are essential components for building Android applications. Compatibility between them is critical to the successful build and execution .. 2024. 1. 28.
[Flutter][Android][iOS] 출시 앱 이름 변경 방법 (How to change the launch app name) 출시 앱 이름 변경 방법 (How to change the launch app name) [Flutter][Android][iOS] 플러터로 개발하는 경우, 안드로이드 네이티브 파일과 iOS 네이티브 파일을 각각 수정해줘야 한다. 각 OS의 네이티브 개발자의 경우에도 아래 순서와 동일하게 수정하면 되니 그대로 수정을 진행하면 되겠다. 안드로이드 - AndroidManifest.xml 수정 iOS - Info.plist 수정 (When developing with Flutter, Android native files and iOS native files must be modified separately. Even for native developers of each OS, You can modify it .. 2023. 10. 19.
반응형