Flutter(4)
-
VSCode Console(output) color
컴퓨터를 포멧하고 Flutter를 다시 설치하려고 했다. flutter가 잘 설치되었는지 확인하는데 VSCode의 output창이 색이 없어서 알아보기 힘들었다. extension을 지원할 것 같아서 찾아보았다. Output Colorizer 를 찾았다. install 버튼만 누르면 자동으로 설치된다. Output창을 보면 색이 보인다.
2023.07.23 -
unable to find bundled java version flutter windows
Flutter 설치하던 중에 오류가 생겼다. unable to find bundled java version. 구글링 해봤다. 해결법 Unable to find bundled Java version · Issue #118502 · flutter/flutter Steps to Reproduce flutter doctor -v [!] Android Studio (version 2022.1) • Android Studio at /Applications/Android Studio.app/Contents • Flutter plugin can be installed from: 🔨 https://plugins.jetb... github.com 해석해보면 Android Stdio가 설치된 폴더에 접근해서 jbr 폴더에..
2023.01.17 -
Flutter가 Dart를 쓰는 이유?
Flutter가 Dart를 쓰는 이유가 뭘까? 참고 Dart overview A short introduction to Dart dart.dev Flutter란? The Flutter framework is a popular, multi-platform UI toolkit that’s powered by the Dart platform, and that provides tooling and UI libraries to build UI experiences that run on iOS, Android, macOS, Windows, Linux, and the web. (Flutter 프레임워크는 인기 있는 다중 플랫폼 UI 툴킷으로 Dart 플랫폼으로 구동되며 iOS, Android, macOS, Windo..
2023.01.11 -
Dart란?
Dart 언어? 참고 Dart overview A short introduction to Dart dart.dev 특징 1 Dart is a client-optimized language for developing fast apps on any platform. (Dart는 모든 플랫폼에서 빠른 앱을 개발하기 위한 클라이언트 최적화 언어입니다.) 즉, 모든 CPU 아키텍처 (Windows, MacOS, iOS, Linux and Web 등)에서 컴파일 가능한 언어이다. 특징 2 Dart Native (machine code JIT and AOT) During development, a fast developer cycle is critical for iteration. The Dart VM offers ..
2023.01.10