본문 바로가기

Flutter397

Flutter 플러터 컨테이너가 다른 컨테이너 안에 있을 때 너비와 높이 제약을 존중하지 않는 이유는 무엇인가요?, Why Flutter Container does not respects its width and height constraints when it is inside other Container 질문 Container( width: 200.0, height: 200.0, child: Container( width: 50.0, height: 50.0, decoration: BoxDecoration( shape: BoxShape.circle, color: Colors.red ), ), ) I've been trying to find the answer in the Container class docs but I did not find it. Update: After a long time, I understood the problem. All views inside a layout must have width, height, x position, and y position. (This applies .. 2023. 9. 24.
Flutter 플러터 SDK를 어떻게 업데이트하나요?, How to update the Flutter SDK? 질문 I'm new in Flutter. 2 months ago I have installed flutter SDK in windows. Now I have seen a lot of updates available. I want to update "Flutter SDK". How to update Flutter SDK to the latest version? 답변 다음의 명령어를 터미널에 입력하여 플러터 SDK를 업데이트할 수 있습니다. flutter upgrade 2023. 9. 24.
Flutter AAB 빌드 중 오류 발생 - 플러터 (안드로이드) - 무결성 검사 실패: java.security.NoSuchAlgorithmException: 알고리즘 HmacPBESHA256을 사용할 수 없음, Error building AAB - Flutter (Android) - Integrity check failed: ja.. 질문 플러터 앱을 위해 AAB를 빌드하려고 합니다. 다음과 같은 명령을 사용하여 키스토어를 생성했습니다: keytool -genkey -v -keystore ~/pc-keystore.jks -keyalg RSA -keysize 2048 -validity 10000 -alias pckey key.properties 파일이 있으며, 플러터 문서에서 제공된 코드를 사용하여 해당 파일을 참조했습니다. 이 Java 관련 문제를 어떻게 해결할 수 있을까요? 내 프로그램은 다음과 같은 예외를 발생시킵니다 * 문제가 발생한 이유: ':app:signReleaseBundle' 작업을 실행하는 동안 실패했습니다. > com.android.build.gradle.internal.tasks.Workers$ActionFacad.. 2023. 9. 24.
Flutter 앱 바(AppBar) 아래에 Scaffold 위젯의 본문을 표시하는 방법은 무엇인가요?, How to display body under the AppBar of scaffold widget and not below? 질문 I'm using a transparent AppBar and I would like to display body behind the transparent AppBar and not below. How to do that ? 답변 파라미터 extendBodyBehindAppBar은 AppBar의 높이를 포함하여 본문을 확장합니다. Flutter의 Scaffold입니다. Scaffold( extendBodyBehindAppBar: true, ) Flutter stable 1.12+에서 사용 가능합니다. 2023년 2월 업데이트 이렇게하면 AppBar이 투명해지지만, 본문의 tappable 위젯을 탭할 수 없습니다. 이를 위해 AppBar의 forceMaterialTransparency 파라미터를 사용.. 2023. 9. 24.