일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
- 다시도전
- opencv
- 기록
- 백엔드
- 암영
- 매일매일쓰자허무하지않게
- 컴공과
- 2024 1학기 기말 파이썬 프로젝트
- to all the errors i loved
- 불공단
- 1학기
- 낭독
- 라즈베리파이
- Til
- 불공단스터디
- 삽질일기
- django
- djangorestframework
- 불공단_스터디
- 가보자고
- 공부기록
- 대학생
- Python
- DRF
- Flutter
- 파이썬
- 해커스
- 장고
- SUNLOG
- UOPEOPELE
- Today
- Total
목록전체 글 (30)
기술해록본

Error: Dart library 'dart:ui' is not available on this platform.import 'dart:ui' as ui show Canvas, Paint, Path, lerpDouble; ^Context: The unavailable library 'dart:ui' is imported through these packages: package:my_app => package:flutter => dart:ui ...import 'dart:ui' show lerpDouble; 문제상황dart 기초 문법을 익히려고 print를 실행하려고 하는 와중에 발생했던 상황.+ dart:ui 문제가 해결되면 no device 문구가 뜨면서 종료되고 콘솔에만 출력을..
Visual Studio - develop Windows apps (Visual Studio Community 2022 17.7.3) Visual Studio - develop Windows apps (Visual Studio Community 2022 17.7.3) X Visual Studio is missing necessary components. Please rerun the Visual Studio installer for the "Desktop development with C++" workload, and include these components: MSVC v142 - VS 2019 C++ x64/x86 build tools - If there are mult..

앱 빌드 중에 발생한 에러 2 * What went wrong: Error:Execution failed for task ':app:processDebugGoogleServices'. >; No matching client found for package name 'com.example.exampleapp'https://darkness-blooms-sun.tistory.com/42 Cannot set the value of read-only property 'signingConfigs' for extension 'android' of type com.android.build.gradle.internal.dsl.BaseAppModuleE" data-og-host="darkness-blooms-sun.tis..

앱 build 할때 발생했던 에러* What went wrong: A problem occurred evaluating project ':app'. > Cannot set the value of read-only property 'signingConfigs' for extension 'android' of type com.android.build.gradle.internal.dsl.BaseAppModuleExtension.해결방법1. gemini 의 도움을 받음 : signingConfigs 는 build.gradles 에 딱 하나만 설정해야하는데 중복 되어있을 수 있는 가능성이 있음 결론 : signingConfigs 는 하나만 있고 문제가 없음. 2. 다른 쪽으로 눈을 돌려 뭐가 잘못 되었는지 확인 ..

문제flutterfire configure -p '프로젝트아이디' 코드를 진행하던 중 교재에 나오지 않은 질문이 등장했다!해결방법android/app/build.gradle 에 있는 applicationId 를 입력하여 해결완료!참고 자료https://stackoverflow.com/questions/38347268/androidwhich-one-to-use-for-package-name-manifests-packagename-or-gradle-appl Android:Which one to use for package name? Manifest's packagename or Gradle applicationId?I am using Android Studio version 2.1.2, and I am t..
FirebaseCommandException: An error occured on the Firebase CLI when attempting to run a command. Firebase 버전을 업데이트 하고 cli에서 재인증을 거쳤는데도 같은 에러가 떴을때 해결방법 npm 명령을 사용하여 Firebase CLI를 설치해야 해야한다고 한다!npm install -g firebase-tools 참고 자료https://jpointofviewntoe.tistory.com/178 [Flutter] 우당탕탕 Firebase 설정 및 에러 해결기1. 프로젝트 루트에 아래 명령어를 입력하여 플러그인 설치 flutter pub add firebase_core 2. Firebase 서비스를 사용하려면 FlutterFi..

1. 동기 vs 비동기동기: 순서대로 요청과 응답을 처리함비동기 : 순서대로 요청을 해도 결과는 각각 다른 순서로 반환됨. 컴퓨터 자원을 낭비하지 않고 효율적으로 코드 실행 가능 ex) 게시판 글을 가져오는 작업-> 오래 걸리므로 동기 코드로 실행하면 전체적으로 지연됨 -> 비동기 사용 2. Future제네릭으로 어떤 미래의 값을 받아올지 정할 수 있음.비동기 프로그래밍은 서버요청과 같이 오래 걸리는 작업을 기다린후 값을 받아와야 하기 때문에 미래 값을 표현하는 Future 클래스가 필요.Future.delayed() : 특정 기간동안 아무것도 하지 않고 기다리는 작업.void main(){ Future name;//미래에 받은 String값 Future number;//미래에 받은 String값..

1. 클래스멤버 변수: 클래스에 종속된 변수메서드: 클래스에 종속된 함수this 키워드: 클래스 내부 속성을 지칭하는데 사용, 함수 내부에 같은 이름의 변수가 없다면 생략가능import 'dart:io';//클래스class Idol{ //클래스에 종속되는 변수지정 String name='블랙핑크'; //클래스에 종속되는 함수=> 메서드 void sayName(){ //클래스 내부의 속성을 지칭하고 싶을때는 this 키워드 사용 print('저는 ${this.name}입니다'); //스코프 안에 같은 속성이름이 하나만 존재한다면 this 생략가능 print('저는 $name 입니다'); }}void main() { //인스턴스 생성 Idol blackPink=Ido..