본문 바로가기

전체 글980

Flutter에서 원형 아이콘 버튼을 만드는 방법은 무엇인가요?, How to create a circle icon button in Flutter? 질문 어떻게 FloatingActionButton과 유사한 것을 만들 수 있나요? 답변 RawMaterialButton은 더 적합한 것 같습니다. RawMaterialButton( onPressed: () {}, elevation: 2.0, fillColor: Colors.white, child: Icon( Icons.pause, size: 35.0, ), padding: EdgeInsets.all(15.0), shape: CircleBorder(), ) 2023. 5. 13.
Flutter 플러터에서 두 항목을 극단에 맞추어 정렬 - 하나는 왼쪽에, 다른 하나는 오른쪽에, Flutter align two items on extremes - one on the left and one on the right 질문 저는 두 항목을 왼쪽과 오른쪽 끝에 맞추려고 노력하고 있습니다. 왼쪽에 맞춰진 하나의 행과 그 하위에 오른쪽에 맞춰진 하위 행이 있습니다. 그러나 하위 행이 부모에서 정렬 속성을 가져오는 것 같습니다. 이것은 내 코드입니다. var SettingsRow = new Row( mainAxisAlignment: MainAxisAlignment.end, crossAxisAlignment: CrossAxisAlignment.center, mainAxisSize: MainAxisSize.max, children: [ Text("Right",softWrap: true,), ], ); var nameRow = new Row( mainAxisAlignment: MainAxisAlignment.start, cross.. 2023. 5. 13.
Flutter 코드에서 웹 브라우저 (URL)를 어떻게 열 수 있나요?, How do I open a web browser (URL) from my Flutter code? 질문 I am building a Flutter app, and I'd like to open a URL into a web browser or browser window (in response to a button tap). How can I do this? 저는 Flutter 앱을 만들고 있으며 버튼 탭에 대한 응답으로 웹 브라우저 또는 브라우저 창에서 URL을 열고 싶습니다. 어떻게 할 수 있을까요? 답변 TL;DR 이제 이것은 플러그인으로 구현되었습니다. const url = "https://flutter.io"; if (await canLaunchUrl(url)) await launchUrl(url); else // can't launch url, there is some error throw .. 2023. 5. 13.
Flutter 플러터에서 TextField/화면 어디든 클릭 한 후 소프트 입력 키보드를 숨기는 방법은 무엇인가요?, How to hide soft input keyboard on flutter after clicking outside TextField/anywhere on screen? 질문 현재, 위젯의 onTap 메소드를 사용하여 소프트 키보드를 숨기는 방법을 알고 있습니다. FocusScope.of(context).requestFocus(new FocusNode()); 하지만 텍스트 필드 외부를 클릭하거나 화면 어디에서든 소프트 키보드를 숨기고 싶습니다. flutter에서 이를 수행하는 방법이 있나요? 답변 잘못된 방식으로 하고 있습니다. 소프트 키보드를 숨기는 간단한 방법을 시도해보세요. 전체 화면을 GestureDetector 메서드로 래핑하고 onTap 메서드에 이 코드를 작성하면 됩니다. FocusScope.of(context).requestFocus(new FocusNode()); 전체 예제는 다음과 같습니다: new Scaffold( body: new GestureDet.. 2023. 5. 12.
POST 요청을 수행하는 동안 Flutter CERTIFICATE_VERIFY_FAILED 오류를 해결하는 방법은 무엇인가요?, How to solve Flutter CERTIFICATE_VERIFY_FAILED error while performing a POST request? 질문 저는 Dart에서 POST 요청을 보내고 있습니다. Postman과 같은 API 테스트 도구에서 테스트하면 응답이 반환됩니다. 그러나 앱을 실행하면 다음과 같은 오류가 발생합니다:- E/flutter ( 6264): HandshakeException: Handshake error in client (OS Error: E/flutter ( 6264): CERTIFICATE_VERIFY_FAILED: unable to get local issuer certificate(handshake.cc:363)) 다음은 함수의 코드입니다- Future getAccessToken(String url) async { try { http.post('url', body: { "email": "xyz@xyz.example.. 2023. 5. 12.
Flutter 플러터: 세로 중앙에 열 정렬하기, Flutter : Vertically center column 질문 Flutter에서 열을 수직 중앙에 배치하는 방법은 무엇인가요? "새로운 Center" 위젯을 사용했습니다. "새로운 Center" 위젯을 사용했지만 열을 수직으로 중앙에 배치하지 않습니다. 아이디어가 있다면 도움이 될 것입니다.... @override Widget build(BuildContext context) { return Scaffold( appBar: AppBar( title: Text("감사합니다"), ), body: new Center( child: new Column( children: [ new Padding( padding: new EdgeInsets.all(25.0), child: new AnimatedBuilder( animation: animationController, c.. 2023. 5. 12.
Flutter 플러터 명령을 찾을 수 없습니다., Flutter command not found 질문 현재 안드로이드 스튜디오 터미널에서 Flutter 명령어가 작동하지 않는 것 같습니다. 제가 프로젝트 루트에서 실행하려고 시도하고 있다고 생각합니다. 출력 결과: bash: flutter: command not found 답변 Flutter 경로를 올바르게 설정해야 합니다. macOS 설치 - 경로 업데이트에서: Flutter SDK를 설치한 디렉토리를 확인합니다. 이 정보는 3단계에서 필요합니다. $HOME/.bash_profile을 엽니다(또는 생성합니다). 터미널에서 nano ~/.bash_profile을 입력하여 텍스트 편집기를 사용할 수 있습니다. macOS v10.15 (Catalina)는 기본적으로 Z 셸을 사용하므로 $file HOME/.zshrc를 편집합니다. 다른 셸을 사용하는 경.. 2023. 5. 12.
Flutter 플레이스토어 오류: 앱 번들에 네이티브 코드가 포함되어 있으며 디버그 심볼을 업로드하지 않았습니다., Playstore error: App Bundle contains native code, and you've not uploaded debug symbols 질문 새로운 플러터 앱 번들을 Playstore에 출시하려고 할 때 다음 오류가 발생합니다: "This App Bundle contains native code, and you've not uploaded debug symbols. We recommend you upload a symbol file to make your crashes and ANRs easier to analyze and debug." 이를 해결할 수 있는 방법을 찾을 수 없습니다. 플러터와 앱 출시에 대해 새로운 사용자이며 조금 절망적입니다... 도움이 필요합니다. 앱/build.gradle에 "android.defaultConfig.ndk.debugSymbolLevel = 'FULL'" (1번째 줄에)을 추가하면 https://de.. 2023. 5. 12.