본문 바로가기

Flutter397

"Flutter build iOS에서 오류 발생: 식별자가 있는 확장 지점을 찾지 못했습니다.", Flutter build iOS got error: Requested but did not find extension point with identifier 질문 저는 방금 Xcode 13.3-beta로 업그레이드하고, 플러터 프로젝트를 실행했을 때 다음 오류가 발생했습니다: Error output from Xcode build: ↳ 2022-03-02 17:45:38.148 xcodebuild[62848:6695836] Requested but did not find extension point with identifier Xcode.IDEKit.ExtensionSentinelHostApplications for extension Xcode.DebuggerFoundation.AppExtensionHosts.watchOS of plug-in com.apple.dt.IDEWatchSupportCore 2022-03-02 17:45:38.148 xcodebuil.. 2023. 6. 12.
Flutter 부모의 크기에 따라 위젯을 배치하는 방법은 어떻게 하나요?, How can I layout widgets based on the size of the parent? 질문 부모 위젯이 가변 크기를 가질 수 있는 경우를 가정해보겠습니다. 예를 들어: var container = new Container( height: 200.0, // 이것이 변경될 수 있다고 상상해보세요 width: 200.0, // 이것이 변경될 수 있다고 상상해보세요 // 이 컨테이너 내용은 부모 컨테이너에 따라 달라질 수 있다고 상상해보세요 child: new Container(), ); 그리고 아마도 부모 컨테이너의 자식이 주어진 크기에 따라 다른 것을 렌더링하고 싶을 수 있습니다. 반응형 디자인 브레이크포인트를 생각해보세요. 너비가 X보다 크면이 레이아웃을 사용하고, 너비가 X보다 작으면 다른 레이아웃을 사용하세요. Flutter에서 이것을 하는 가장 좋은 방법은 무엇인가요? 답변 레이아웃 .. 2023. 6. 12.
에러: 멤버를 찾을 수 없음: 'packageRoot', Flutter에서 ignore: deprecated_member_use를 해결하는 방법은 무엇인가요?, Error: Member not found: 'packageRoot', how to solve ignore: deprecated_member_use in Flutter? 질문 내 플러터 프로젝트에서 몇 가지 플러그인 업데이트를 진행한 후 flutter upgrade를 사용했습니다. 그 후에는 flutter 프로젝트를 실행할 때 다음 오류가 표시됩니다- /C:/src/flutter/flutter/.pub-cache/hosted/pub.dartlang.org/platform-3.0.2/lib/src/interface/local_platform.dart:46:19: Error: Member not found: 'packageRoot'. io.Platform.packageRoot; // ignore: deprecated_member_use ^^^^^^^^^^^ FAILURE: Build failed with an exception. * Where: Script 'C:\src\f.. 2023. 6. 12.
Flutter 컨테이너 위젯을 수직으로 부모 요소에 채우도록 만드세요., Make container widget fill parent vertically 질문 TL;DR Need the container to fill the vertical space so that it can act as a ontap listener. Have tried most solutions but nothing seems to work. So what I am trying to do is to make my container fill up the vertical space while still having a fixed width. Two first is what I have and third is what I want. The idea is to have the container transparent with a gesture ontap listener. If anyone h.. 2023. 6. 12.