본문 바로가기

전체 글980

Flutter 플러터 앱은 크기가 너무 큽니다., Flutter apps are too big in size 질문 I have good experience in android app development using java. Recently I came to know about flutter. So, I have tried to create a simple android app with flutter based on official tutorial. But surprisingly the debug app size is 25MB and release apk costs more than 7MB. It is really larger when compare with native developed android app. Is there any way to optimize it? 답변 앱 크기에 대한 최소 제한이 있는 것.. 2023. 6. 12.
"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.
Flutter 플러터에서 다크 모드와 라이트 모드를 구현하는 방법은 무엇인가요?, How to implement Dark mode and Light Mode in flutter? 질문 I want to create a flutter app that has 2 light and dark mode themes that change by a switch in-app and the default theme is default android theme. I need to pass some custom color to the fellow widget and I don't want to just config material theme. how to detect the user device default theme? the secend question is how to provide a theme to the whole app? third is how change the theme with a.. 2023. 6. 12.
Flutter 안드로이드 스튜디오에서 플러터 아웃라인은 "표시할 것이 없습니다"라고 표시됩니다., Flutter Outline Shows "Nothing to show" in android studio 질문 나는 Flutter Outline을 통해 위젯을 추출하려고 하지만, Android Studio에서 아래와 같은 문제를 마주하고 있다. Flutter Outline은 "표시할 것이 없음"을 보여줍니다. 실행 후 flutter doctor -v 다음이 표시됩니다: 이 문제를 어떻게 극복할 수 있을까요? 답변 마우스를 위젯 위로 이동하고 Ctrl (또는 macOS에서 ⌘ command)를 누른 다음 해당 위젯을 클릭하세요. 이 단계 이후에는 Flutter Outline이 활성화되어 위젯 트리가 표시됩니다. 2023. 6. 12.
Python 파이썬을 사용하여 시스템 호스트 이름을 어떻게 가져올 수 있나요?, How can I use Python to get the system hostname? 질문 I'm writing a chat program for a local network. I would like be able to identify computers and get the user-set computer name with Python. 답변 socket와 그것의 gethostname() 기능을 사용합니다. 이렇게 하면 Python 인터프리터가 실행되는 컴퓨터의 hostname을 가져올 수 있습니다: import socket print(socket.gethostname()) 2023. 6. 10.