본문 바로가기

전체 글980

Flutter 플러터에서 기본 글꼴 패밀리를 변경하는 방법은 무엇인가요?, How to change the default font family in Flutter 질문 어떻게 앱의 모든 텍스트를 특정 폰트로 변경할 수 있을까요? TextStyle()를 사용하여 각각의 텍스트를 개별적으로 변경할 수는 있지만, 어떻게 앱을 특정 폰트로 기본 설정할 수 있을까요? 어떻게 보여주시겠어요? 답변 아래 단계를 따라서 플러터 앱의 기본 폰트 패밀리를 변경할 수 있습니다: 1. 프로젝트 폴더에 폰트 파일을 추가하세요. 예를 들어 프로젝트 폴더 > assets > fonts > hind입니다. 2. 프로젝트의 pubspec.yaml 파일에서 폰트 파일과 스타일을 가진 폰트 패밀리를 선언하세요 (예시): 메인 클래스 파일의 MaterialApp 위젯에서 기본 폰트 패밀리를 다음과 같이 정의하세요: 2023. 9. 26.
Flutter 플러터 HTTP 패키지는 존재하지 않습니다., Flutter http package does not exist 질문 일반적으로 패키지는 다음과 같이 가져와야 합니다: import 'package:http/http.dart' as http; 하지만 지금은 다음과 같은 오류가 발생합니다: [dart] URI의 대상이 존재하지 않습니다: 'package:http/http.dart'. [uri_does_not_exist] Flutter의 새로운 업데이트에서 어떤 변경이 있었을까요? 그렇다면, 지금은 어떻게 get 요청을 수행할 수 있을까요? 답변 flutter에 http를 추가하는 명확한 방법입니다. 패키지의 pubspec.yaml 파일에 다음을 추가하십시오: dependencies: http: ^1.0.0 // 최신 버전은 변경될 수 있습니다. 설치하기 명령줄에서 패키지를 설치할 수 있습니다: pub을 사용하여: $ .. 2023. 9. 26.
Flutter 아이콘 버튼의 배경색을 설정하는 방법은 무엇인가요?, How to set background color for an icon button? 질문 아이콘 버튼에 배경색을 적용하고 싶지만 명시적인 backgroundColor 속성을 찾을 수 없습니다. 이렇게 하려고 합니다: 현재까지 이렇게 성취했습니다: 지금까지의 코드는 다음과 같습니다: @override Widget build(BuildContext context) { return Scaffold( resizeToAvoidBottomPadding: false, backgroundColor: Color(0xFF13212C), appBar: AppBar( title: Text('데모'), ), drawer: appDrawer(), body: new Center( child: new Column( crossAxisAlignment: CrossAxisAlignment.stretch, // mainA.. 2023. 9. 26.
Flutter 플러터에서 축소되는 요소를 어떻게 애니메이션화할 수 있을까요?, How to Animate Collapsing Elements in Flutter 질문 사용자가 다른 위젯 (형제 또는 부모)을 탭 할 때 위젯을 확장하고 축소하려면 어떻게해야합니까? new Column( children: [ new header.IngridientHeader( new Icon( Icons.fiber_manual_record, color: AppColors.primaryColor ), '음성 트랙 1' ), new Grid() ], ) 사용자가 header.IngridientHeader를 탭 할 수 있도록하고 Grid 위젯은 토글되어야합니다 (표시되지 않으면 숨겨지고 그 반대도 마찬가지입니다). 나는 부트 스트랩에서 축소와 비슷한 작업을하려고합니다. getbootstrap.com/docs/4.0/components/collapse header.IngridientHead.. 2023. 9. 26.
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.