본문 바로가기

분류 전체보기

(115)
23.07.05 플러터 개발일기 import error시 방법 import error시 빨간줄 밑에 나올시에
23.07.04 플러터 개발일기 구글 폰트 패키지 가져오기 구글 폰드 패키지 가져오는방법 터미널 창에 flutter pub add google_fonts pubspec.yaml 파일에서 dependencies 탭에서 google_fonts: ^5.1.0 해당 구글 폰트 버전 확인하기
23.07.03 플러터 개발일기 자바ERROR 코드 google_font 에러 google_fonts : ^4.0.4 추가하기 "The supplied phased action failed with an exception. Could not open init generic class cache for initialization script 'C:\Users\user\AppData\Roaming\Code\User\globalStorage\redhat.java\1.20.0\config_win\org.eclipse.osgi\54\0\.cp\gradle\init\init.gradle' (C:\Users\user\.gradle\caches\7.5\scripts\2ls3674h30ilbdwp9tqvjdwor). BUG! exception in phase 'seman..
23.07.01 플러터 개발일기 코틀린 for문 복습 for (index: in 10 downto 0){ Log.d("for", "현재 숫자는 ${index}")
23.06.30 플러터 개발일기 안드로이드 스튜디오 로그캣 출력 package:mine level:debug tag:BasicSyntax package:mine level:debug tag:BasicSyntax 이 내용입니다. 복사 붙여넣기로 로그캣이 잘 나오면 굿 안되시면은 직접 작성하시면 됩니다.
23.06.29 플러터 개발일기 github 올리는 방법 저는 lib 파일이라 이렇게 나오네요
23.06.28 플러터 개발일기 애드몹 테스트 광고 ID https://developers.google.com/admob/android/interstitial?hl=ko-KR 전면 광고 | Android | Google for Developers 이 페이지는 Cloud Translation API를 통해 번역되었습니다. Switch to English 전면 광고 컬렉션을 사용해 정리하기 내 환경설정을 기준으로 콘텐츠를 저장하고 분류하세요. 전면 광고는 호스트 앱의 인터 developers.google.com 테스트 광고 ID 공식문서 Android 광고 단위 ID 배너광고 ca-app-pub-3940256099942544/6300978111 전면광고 ca-app-pub-3940256099942544/1033173712 보상형 동영상 광고 ca-app-pub-3..
23.06.27 플러터 개발일기 minSdkVersion19,multidex error코드 해결방법 Flutter Fix The plugin google_moble_ads requires a higher Android SDK version. Fix this issue by adding the following to the file -- 에러코드 해결법 뭔소리지? android { defaultConfig { minSdkVersion 19 } } 밑에 파일 2개 잘보세요! ---------------------------------------------------------------------------- android-app-build.gradle minSdkVersion 19 multiDexEnabled true 입력 후 저장 이게 해결되면 Flutter에서 안드로이드 Multidex 이슈가 뜰껍니..
23.06.26 플러터 개발일기 JSONView 링크 JSONView 브라우저에서 JSON 문서를 보세요. chrome.google.com https://chrome.google.com/webstore/detail/jsonview/gmegofmjomhknnokphhckolhcffdaihd?hl=ko chrome 확장 프로그램 추가 ListView.builder( itemCount: 100, // 전체 아이템 개수 itemBuilder: (Context, index) { // index는 0~99까지 증가하며 itemCount 만큼 호출 return Text("$index"); 4-1강 JSONView 링크 API 인터넷 상의 데이터를 가져오는 것 동기 & 비동기 await async
23.06.25 플러터 개발일기 이미지파일 넣는방법 플러터 이미지 불러오는 셋팅 pubspec.yaml 파일에서 이미지 넣는 방법 pubspec.yaml 파일 들어가서 /////////////////////////////////////////////////////////////////// flutter: # The following line ensures that the Material Icons font is # included with your application, so that you can use the icons in # the material Icons class. uses-material-design: true assets: - assets/ ///////////////////////////////////////////////////////..