Flutter397 Flutter 소켓 예외 해결 방법: 호스트 조회 실패 : 'www.xyz.com' (OS 오류 : 호스트 이름과 연관된 주소 없음, errno = 7), How to solve SocketException: Failed host lookup: 'www.xyz.com' (OS Error: No address associated with host.. 질문 20초 후에 http 호출을 시도하면 콘솔에서 다음 오류가 발생합니다: E/flutter (8274): [ERROR:flutter/shell/common/shell.cc(184)] Dart Error: Unhandled exception: E/flutter (8274): SocketException: Failed host lookup: 'flutter-project-xxxxx.firebaseio.com' (OS Error: No address associated with hostname, errno = 7) 이 오류는 앱 http 패키지를 통해 호출하는 모든 메서드 및 모든 경로에서 발생합니다. 저는 안드로이드 스튜디오의 AVD 가상 장치를 사용하여 Windows에서 플러터 앱을 개발하고 있습니다... 2023. 5. 31. Flutter 플러터를 사용하여 윈도우 환경에서 iOS 기기에 대한 개발, Developing for iOS device in Windows environment with Flutter 질문 I'm new to Flutter, was just wondering if it's possible. I've tried building the demo code using intellij with given instruction (https://flutter.io/setup/). It runs well on android device, but can't find the option to compile and run on my iOS device. 답변 당신은 안드로이드 스튜디오 또는 비주얼 스튜디오 코드로 리눅스 또는 윈도우에서 주요 개발을 할 수 있습니다. 그런 다음 git을 사용하여 코드를 macOS로 이동하여 iOS 시뮬레이터/기기에서 Xcode로 테스트하고 앱 스토어에 배포합니다. 모든 개.. 2023. 5. 31. 내 Flutter 앱이 웹에서 실행 중인지 어떻게 감지할 수 있나요?, How can I detect if my Flutter app is running in the web? 질문 나는 Platform.isAndroid, Platform.isIOS 등으로 운영 체제를 감지할 수 있다는 것을 알고 있지만, Platform.isWeb와 같은 것은 없기 때문에 이를 감지하는 방법은 무엇인가요? 답변 글로벌 부울 변수 kIsWeb가 있으며 이 변수는 앱이 웹에서 실행될 수 있는지 여부를 알려줍니다. 문서: https://api.flutter.dev/flutter/foundation/kIsWeb-constant.html import 'package:flutter/foundation.dart' show kIsWeb; if (kIsWeb) { // 웹에서 실행 중! } else { // 웹에서 실행되지 않음! 여기에서 추가 플랫폼을 확인할 수 있습니다. } 2023. 5. 30. Flutter에서 안드로이드 StatusBar를 숨기는 방법, How to hide Android StatusBar in Flutter 질문 Flutter 앱에서 Android 상태 표시 줄을 숨기는 방법? 답변 SystemChrome.setEnabledSystemUIOverlays([])는 원하는 대로 작동해야합니다. SystemChrome.setEnabledSystemUIOverlays(SystemUiOverlay.values)를 사용하여 다시 가져올 수 있습니다. 다음을 사용하여 가져올 수 있습니다. import 'package:flutter/services.dart'; 답변 업데이트 (Flutter 2.5 이상): SystemChrome.setEnabledSystemUIMode(SystemUiMode.leanBack); 또는 다른 옵션을 사용할 수 있습니다: SystemChrome.setEnabledSystemUIMode(Syst.. 2023. 5. 30. 이전 1 ··· 63 64 65 66 67 68 69 ··· 100 다음