728x90 전체 글551 url_launcher 지도, 네비게이션 String _url = 'geo:$latitude,$longitude?q= $target '; if (!await launch(_url)) throw 'Could not launch $_url'; 이렇게 하면 내 위치 찾아준다.. 그런데 주의사항, Tmap의 경우 latitude,longitude 사이에 공백 넣으면 못찾는다 이것 때문인지 몰라서 엄청나게 많은 시행착오를 겪었음... 님들은 그런 일 없기를 바랍니다. 2022. 3. 22. 이미지 사이즈 바꾸기 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. 이전 1 ··· 104 105 106 107 108 109 110 ··· 138 다음 728x90