본문 바로가기
반응형

Development Solutions141

How to define and use javascript as singleton in Qt framework (Qt프레임워크에서 javascript를 싱글턴으로 정의하여 사용하는 방법) How to define and use javascript as singleton in Qt framework Qt프레임워크에서 javascript를 싱글턴으로 정의하여 사용하는 방법 (추천) Qt QML과 C++로 시작하는 크로스플랫폼 앱 개발 강의 - 입문편 https://inf.run/3XmSH Qt QML과 C++로 시작하는 크로스플랫폼 앱 개발 - 입문편 강의 - 인프런 Qt QML과 C++를 사용하여 크로스플랫폼 애플리케이션 개발에 입문할 수 있습니다. 해당 강의에서는 윈도우 응용 프로그램 타겟으로 개발을 진행합니다., 강의 주제 📖 이 강의를 통해 참가자들은 www.inflearn.com First, at the top of the javascript file below (먼저, 아래의 ja.. 2023. 8. 9.
When using scp or sftp, let's import libssh2 (scp, sftp를 쓸 때는 libssh2를 임포트하자) When using scp or sftp, let's import libssh2 (scp, sftp를 쓸 때는 libssh2를 임포트하자) libssh2 library official website (libssh2 라이브러리 공식 홈페이지) The official libssh2 homepage is as follows. You can get dll and lib files from that page. You can refer to the library usage method or API documentation. (libssh2 공식 홈페이지는 아래와 같다. 해당 페이지에서 dll, lib 파일을 받을 수 있으며 라이브러리 사용 방법이나 API 문서를 참고할 수 있다.) https://www.libssh.. 2023. 8. 7.
[Solved][Flutter] Error: The getter 'docs' isn't defined for the type 'Object' [Solved][Flutter] Error: The getter 'docs' isn't defined for the type 'Object' 문제 상황 (Problem) StreamBuilder( stream: FirebaseFirestore.instance . . . ) 위 코드에서 에러가 발생한다. Error: The getter 'docs' isn't defined for the type 'Object' 해결 방법 (Solution) StreamBuilder를 StreamBuilder 로 변경하면 된다. StreamBuilder ( stream: FirebaseFirestore.instance . . . ) 2023. 7. 30.
[Solved][Flutter] static variable must initialized in dart [Flutter] static variable must initialized in dart 문제 상황 (Problem) static BannerAd _banner; 위와 같이 변수를 선언하면 최신 버전 dart에서 초기화를 하지 않아 에러가 발생한다. 일반 변수라면 late키워드를 붙여서 해결할 수 있지만, static 변수는 late를 붙일 수 없다. 그렇다면 어떻게 해결해야 할까? [English](If you declare a variable like this An error occurs because it is not initialized in the latest version of dart. If it is a general variable, it can be solved by attaching.. 2023. 7. 30.
반응형