FLUTTER203 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. Flutter의 설치된 버전을 확인하는 방법은 무엇인가요?, How to check the installed version of Flutter? 질문 내 컴퓨터에 설치된 Flutter 버전을 어떻게 찾을 수 있나요? 답변 다음 명령어를 사용하세요 flutter --version 2023. 5. 30. 이전 1 ··· 25 26 27 28 29 30 31 ··· 51 다음