전체 글
-
Flutter 텍스트, 아이콘, 이미지DEV/flutter (dart) 2023. 1. 30. 22:20
Flutter 기본 Text, Icon, Image 사용법. // 텍스트 Text('내용') // 아이콘 (https://fonts.google.com/icons?selected=Material+Icons) Icon(Icons.아이콘이름) // 이미지 (assets 폴더), ex) Image.assets('my_img_name.jpg') // pubspec.yaml 파일의 "flutter:" 하단에 "assets:" 하단에 "- assets/" 등록. Image.assets('경로') pubspec.yaml 이미지 폴더 등록 예시 flutter: assets: - assets/ Flutter 아이콘(Icons) 종류 https://fonts.google.com/icons?selected=Material+..
-
Java 환경변수 설정 (Windows)DEV/other things 2023. 1. 30. 11:46
1. 시작(윈도우) 키를 누르고 "환경 변수" 입력, "시스템 환경 변수 편집" 클릭 2. "환경 변수(N)..." 클릭 3. 시스템 변수(S)의 "새로 만들기(W)..." 클릭, 변수 이름 : JAVA_HOME 변수 값 : 본인 JDK 폴더 경로 (하단 이미지 참조) 본인의 jdk 경로는 아래와 같이 확인. (광고 아님) https://seokbong.tistory.com/136 Java JDK 다운로드 및 경로 확인 JDK 설치를 하지 않은 경우 아래 링크에서 다운로드 하자. https://www.oracle.com/java/technologies/downloads/#java8-windows Download the Latest Java LTS Free Subscribe to Java SE and ge..
-
Java JDK 다운로드 및 경로 확인DEV/other things 2023. 1. 30. 11:34
JDK 설치를 하지 않은 경우 아래 링크에서 다운로드 하자. // 8버전 https://www.oracle.com/java/technologies/downloads/#java8 Download the Latest Java LTS Free Subscribe to Java SE and get the most comprehensive Java support available, with 24/7 global access to the experts. www.oracle.com // 11버전 https://www.oracle.com/kr/java/technologies/javase/jdk11-archive-downloads.html Java Archive Downloads - Java SE 11 | Oracle 대..
-
Flutter doctor에서 flutter doctor --android-licenses UnsupportedClassVersionError 발생하는 경우DEV/flutter (dart) 2023. 1. 30. 11:15
flutter doctor --android-licenses Exception in thread "main" java.lang.UnsupportedClassVersionError: com/android/prefs/AndroidLocationsProvider has been compiled by a more recent version of the Java Runtime (class file version 55.0), this version of the Java Runtime only recognizes class file versions up to 52.0 아침부터 삽질을 했다. 우선 Android SDK Command-line Tools가 설치되어 있는지 확인한다. 난 근데 안되더라...? 알고보니.....