반응형 분류 전체보기188 Flutter 성능 개선 방법 (앱 개발) 플러터 성능 개선 방법 요약 build 메소드 부하(load)를 최소화앱에서 UI변경이 있을 때마다 build 메소드이 호출됨큰 위젯보다는 작은 위젯으로 쪼개자위젯을 const로 선언하자위젯 트리의 변경을 최소화위젯 트리(논리적 구조) -> 엘리먼트 트리(위젯트리와 렌더트리 매핑) -> 렌더 트리(실제 렌더링되는 구조)위젯트리 변경이 없으면 rebuild할 때 렌더 트리를 변경하지 않는다가급적 ListView 보다는 ListView.builder 사용ListView는 모든 위젯을 빌드하여 성능 저하 (메모리에 저장 유지 o)ListView.builder는 화면에 표시되는 위젯만 동적 빌드 (메모리 저장 유지 x)성능이 많이 필요한 작업은 IsolateDart는 단일 스레드 언어. 단 하나의 Isolate.. 2023. 1. 8. How to solve error "unhandled exception: user denied permissions to access the device's location." 해결방법 How to solve error "unhandled exception: user denied permissions to access the device's location." 해결방법 아래와 같이 오류 메시지 발생 (Error message as below) unhandled exception: user denied permissions to access the device's location. 해결 방법 : 아래 코드와 같이 permission을 추가하는 코드 작성 (Solution: Write code to add permission like below code) LocationPermission permission = await Geolocator.requestPermission(); // 추가!.. 2022. 10. 19. How to fix when redirect (>) doesn't work because you don't have permission in Ubuntu (우분투에서 권한이 없다는 이유로 리다이렉션(>)이 안될 때 해결 방법) How to fix when redirect (>) doesn't work because you don't have permission in Ubuntu (우분투에서 권한이 없다는 이유로 리다이렉션(>)이 안될 때 해결 방법) 아래처럼 명령어를 내리면 /etc/udev/rules.d 내의 파일에 리다이렉션이 실패한다. 이유는 폴더가 root권한의 폴더이므로 일반 유저에겐 권한이 없기 때문이다. [English](If you issue the command as below, redirection to the file in /etc/udev/rules.d fails. The reason is that the folder is a folder with root privileges, so normal users.. 2022. 10. 13. How to grant USB device permission to general user on Ubuntu (Linux 우분투에서 일반 유저에게 usb디바이스 권한 부여하는 방법) Linux Solution How to grant USB device permission to general user(일반 유저에게 usb디바이스 권한 부여하는 방법) 리눅스에서 애플리케이션을 개발하다보면, usb디바이스와의 연결이 필요한 기능을 개발할 때가 있다.이 때, usb 디바이스에 접근이 되지 않는 문제가 발생하곤 한다. libusb 기반의 라이브러리를 사용할 경우, LIBUSB_ACCESS_ERROR가 발생할 것이다.해결책은 아래 명령어를 순서대로 입력하는 것이다. 터미널을 열고 아래 명령어를 하나씩 입력해보자. [English] (When developing applications in Linux, there are times when developing functions that requi.. 2022. 10. 12. 이전 1 ··· 22 23 24 25 26 27 28 ··· 47 다음 반응형