본문 바로가기

전체 글980

Flutter: 플레이 스토어 버전 코드 업그레이드하기, Flutter: upgrade the version code for play store 질문 나는 플러터로 플레이 스토어에 애플리케이션을 출시했고, 이제 애플리케이션의 새 버전을 업로드하려고 합니다. 다음과 같이 버전 코드를 변경하려고 시도하고 있습니다: flutter build apk --build-name=1.0.2 --build-number=3 또는 다음과 같이 local.properties를 변경할 수 있습니다. flutter.versionName=2.0.0 flutter.versionCode=2 flutter.buildMode=release 하지만 매번 플레이 스토어에서 오류가 발생합니다. APK 또는 Android 앱 번들에 이미 코드 1이 할당되어 있기 때문에 APK 또는 Android 앱 번들에 대해 다른 버전 코드를 사용해야 합니다. 답변 version:A.B.C+X을 pu.. 2023. 5. 9.
flutter 비주얼 스튜디오 코드 - URI의 대상이 존재하지 않음 'package:flutter/material.dart', Visual Studio Code - Target of URI doesn't exist 'package:flutter/material.dart' 질문 나는 방금 플러터 개발을 위해 맥북을 설정했습니다, 그래서 나는 플러터 SDK를 다운로드하고 문서에 배치했습니다. 그 후에 나는 명령 줄에서 flutter로 작업하기 위해 경로 변수를 설정했습니다. 나는 명령어 flutter create todolist를 실행하여 빈 프로젝트를 얻었습니다. 나는 또한 내 비주얼 스튜디오 코드를 Dart-Code로 설정하여 적절한 구문 강조, IntelliSense 등을 갖추고 있습니다. 그래서 내 비주얼 스튜디오 코드를 열 때, 다음 이미지와 같이 import 메소드를 강조합니다: 이것은 올바른 클래스를 강조하기 때문에 실제 오류인지 아닌지 이해하기가 완전히 어렵다는 것을 의미합니다. 나는 pub get과 flutter packages get을 모두 실행하여 모든 .. 2023. 5. 9.
flutter 하위 트리 내에서 동일한 태그를 공유하는 여러 영웅이 있습니다., There are multiple heroes that share the same tag within a subtree 질문 저는 라우트를 사용하여 한 화면에서 다른 화면으로 이동하려고 합니다. 페이지를 이동시키기 위한 버튼을 누르면 다음과 같은 오류가 발생합니다. I/flutter ( 8790): Another exception was thrown: There are multiple heroes that share the same tag within a subtree. 다음은 코드입니다: 라우트: { '/first':(BuildContext context) =>NavigatorOne() , '/second':(BuildContext context) =>NavigatorTwo(), '/third':(BuildContext context) =>NavigatorThree(), }, Navigator.of(context).pu.. 2023. 5. 9.
flutter 플러터 애플리케이션이 디버그 모드에서 실행 중인지 확인하는 방법은 무엇인가요?, How can I check if a Flutter application is running in debug? 질문 Flutter 앱이 디버그 모드 일 때 코드를 실행하는 방법을 찾고 있습니다. Flutter에서 가능한가요? 문서 어디에서도 찾을 수 없습니다. 다음과 같은 것 If(app.inDebugMode) { print("Print only in debug mode"); } Flutter 애플리케이션이 디버그 모드 또는 릴리스 모드에서 실행 중인지 확인하는 방법은 무엇인가요? 답변 나중 버전에서는 kDebugMode를 사용할 수 있습니다: if (kDebugMode) doSomething(); 어설션(asserts)은 수동으로 "디버그 모드" 변수를 만들 수 있지만, 그것을 피해야합니다. 대신, package:flutter/foundation.dart에서 상수 kReleaseMode를 사용하십시오. 차이점은.. 2023. 5. 9.
flutter 플러터: 처리되지 않은 예외: 바인딩이 초기화되기 전에 ServicesBinding.defaultBinaryMessenger에 액세스했습니다., Flutter: Unhandled Exception: ServicesBinding.defaultBinaryMessenger was accessed before the binding was.. 질문 이 문제를 해결하는 해결책이 있나요? 스택 트레이스: [VERBOSE-2:ui_dart_state.cc(148)] Unhandled Exception: ServicesBinding.defaultBinaryMessenger was accessed before the binding was initialized. If you're running an application and need to access the binary messenger before `runApp()` has been called (for example, during plugin initialization), then you need to explicitly call the `WidgetsFlutterBinding.ensureInit.. 2023. 5. 9.
flutter 플러터에서 상태를 가지는 위젯에 데이터 전달하기, Passing Data to a Stateful Widget in Flutter 질문 저는 상태가 있는 위젯을 생성하면서 데이터를 전달하는 권장 방법이 궁금합니다. 제가 본 두 가지 방법은 다음과 같습니다: class ServerInfo extends StatefulWidget { Server _server; ServerInfo(Server server) { this._server = server; } @override State createState() => new _ServerInfoState(_server); } class _ServerInfoState extends State { Server _server; _ServerInfoState(Server server) { this._server = server; } } 이 방법은 ServerInfo와 _ServerInfoState.. 2023. 5. 9.
flutter 키보드가 나타나면, 플러터 위젯이 크기를 조정합니다. 이를 방지하는 방법은 무엇인가요?, When the keyboard appears, the Flutter widgets resize. How to prevent this? 질문 나는 이와 같은 확장 위젯 열을 가지고 있습니다: return new Container( child: new Column( crossAxisAlignment: CrossAxisAlignment.stretch, children: [ new Expanded( flex: 1, child: convertFrom, ), new Expanded( flex: 1, child: convertTo, ), new Expanded( flex: 1, child: description, ), ], ), ); 이렇게 보입니다: convertFrom은 TextField를 포함합니다. 이 텍스트 필드를 탭하면 Android 키보드가 화면에 나타납니다. 이것은 화면 크기를 변경하므로 위젯이 이와 같이 크기를 조정합니다: 내 Co.. 2023. 5. 9.
flutter 플러터에서 wrap_content와 match_parent의 상응하는 것은 무엇인가요?, The equivalent of wrap_content and match_parent in flutter? 질문 안드로이드에서는 match_parent와 wrap_content를 사용하여 위젯을 부모에 상대적으로 자동으로 크기 조정합니다. Flutter에서는 기본적으로 모든 위젯이 wrap_content로 설정되는 것 같습니다. 부모의 너비와 높이를 채울 수 있도록 어떻게 변경할 수 있을까요? 답변 작은 트릭으로 할 수 있습니다: 다음과 같은 요구 사항이 있는 경우 : ( 너비,높이 ) Wrap_content ,Wrap_content : //이것을 자식으로 사용하세요 Wrap( children: [*your_child*]) Match_parent,Match_parent: //이것을 자식으로 사용하세요 Container( height: double.infinity, width: double.infinity,ch.. 2023. 5. 9.