DEV/flutter (dart)
-
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+..
-
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가 설치되어 있는지 확인한다. 난 근데 안되더라...? 알고보니.....
-
Flutter doctor에서 Unable to find bundled Java version 에러 (M1 mac)DEV/flutter (dart) 2023. 1. 27. 13:32
에러 Android Studio (version 2022.1) ✗ Unable to find bundled Java version. fultter를 설치하고 flutter doctor를 실행하니 위의 에러가 발생함. 환경 M1 Mac 해결방법 우선 finder에서 응용프로그램에서 안드로이드 스튜디오(Android Studio)를 찾아 우클릭 -> "패키지 내용 보기" 선택 그러면 Contents 폴더가 보이는데 진입하고 jre 폴더를 생성 jbr 폴더 안에 있는 Contents 폴더를 그대로 복사하여 jre 폴더 안에 복사 터미널 종료 후 재실행!