728x90 전체 글584 tutorial_coach_mark flutter 튜토리얼 overlay touch overlay touch 했을 때 반응하게 하려면! 답은 아래의 질문 확인할 것! https://githubhot.com/repo/RafaelBarbosatec/tutorial_coach_mark/issues/102 finish tutorial when clicking the overlay? - githubhot finish tutorial when clicking the overlay? githubhot.com 2022. 3. 24. 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. 이전 1 ··· 112 113 114 115 116 117 118 ··· 146 다음 728x90