728x90 분류 전체보기574 이미지 사이즈 바꾸기 File? getResizeImage(File originalImage){ Image image = decodeImage(originalImage.readAsBytesSync())!; int standard = 800; int width = image.width; int height = image.height; double ratio = width/height; Image? resizedImage; if(ratio>1) resizedImage = copyResize(image, width: min(width, standard), height: min(width.toDouble()/ratio, standard.toDouble()/ratio).toInt()); else resizedImage = copyRe.. 2022. 3. 19. unfocus, keyboard down, focus 해제하고 싶을 때, 키보드 내리고 싶을 때 FocusManager.instance.primaryFocus?.unfocus(); 2022. 3. 14. flutter 내부 db 중에 매우 빠르다는 hive https://velog.io/@ristretto/Flutter-Hive를-사용해보자 Flutter - Hive를 사용해보자 Hive를 사용하면 앱 로컬에 데이터를 저장할 수 있다.테마, 유저 설정, 로그인 데이터와 같이 앱을 껐다가 켜도 계속 유지하고 싶은 데이터가 있을 때 빠르고 초-간단한 Hive를 이용해보자 !main() 함 velog.io https://pub.dev/packages/hive 2022. 3. 7. Firebase following follower 만들기 https://fireblog.io/post/Q5bOGfWwM8ict9CudnXk/how-to-build-a-scalable-follower-feed-in-firestore How to Build a Scalable Follower Feed in Firestore - Fireblog.io Jonathan Gamble on Sunday, October 3, 2021 (last modified on Sunday, October 17, 2021) fireblog.io 숫자가 많아졌을 때 해결방법인데 이거 참고하면 좋을 듯! 2022. 3. 7. 이전 1 ··· 110 111 112 113 114 115 116 ··· 144 다음 728x90