Flutter397 Flutter 플러터를 사용하여 가능한 경우 Google Maps 앱을 여십시오., Open Google Maps app if available with flutter 질문 Google Maps 앱이 iOS에 설치되어 있는지 감지하고, 설치되어 있다면 실행하고, 그렇지 않으면 Apple Maps를 실행하려고 합니다. 지금까지 한 작업은 다음과 같습니다. 그러나 Google Maps가 설치된 폰에서는 감지되지 않고 적절하게 실행되지 않습니다. 어떤 아이디어가 있나요? import 'package:url_launcher/url_launcher.dart'; _launchMaps() async { String googleUrl = 'comgooglemaps://?center=${trip.origLocationObj.lat},${trip.origLocationObj.lon}'; String appleUrl = 'https://maps.apple.com/?sll=${trip.or.. 2023. 10. 3. Flutter 플러터: 안드로이드 스튜디오에서 IOS 시뮬레이터에 연결되지 않음, Flutter : Not Connecting to IOS Simulator in Android Studio 질문 I am following the Flutter Test Drive tutorial on the Flutter Docs. I installed XCode, cocoapods, ran pods setup etc. However, in Android Studio, when I try to run IOS by clicking "Run IOS Simulator," it opens the simulator but fails to connect. I also tried doing this from the terminal. Opened an IOS emulator and then ran flutter run in the app folder in terminal. I got an error No devices a.. 2023. 10. 3. Flutter 다트에서 문자열의 마지막 n개 문자를 어떻게 가져올 수 있나요?, How to get the last n-characters in a string in Dart? 질문 문자열에서 마지막 n-문자를 어떻게 얻을 수 있을까요? 다음을 사용해 보았습니다: var string = 'Dart is fun'; var newString = string.substring(-5); 하지만 그것은 올바른 것 같지 않습니다. 답변 var newString = string.substring(string.length - 5); 2023. 10. 3. Flutter 플러터 오류: ':image_picker_android:debugUnitTestRuntimeClasspath' 구성을 위한 모든 아티팩트를 해결할 수 없습니다., Flutter Error : Could not resolve all artifacts for configuration ':image_picker_android:debugUnitTestRu.. 질문 나는 현재 작업 중인 애플리케이션이 에뮬레이터나 모바일에서는 디버깅이 잘 되지만, apk를 빌드하려고 하면 다음과 같은 오류가 발생합니다: Building without sound null safety For more information see https://dart.dev/null-safety/unsound-null-safety Running Gradle task 'assembleRelease'... FAILURE: Build failed with an exception. * What went wrong: Execution failed for task ':app:lintVitalRelease'. > Could not resolve all artifacts for configuration ':im.. 2023. 10. 3. 이전 1 ··· 10 11 12 13 14 15 16 ··· 100 다음