본문 바로가기

Flutter397

Flutter CircularProgressIndicator의 크기를 설정하는 방법은 무엇인가요?, How to set size to CircularProgressIndicator? 질문 내 애플리케이션에 로딩 화면을 만들려고 하는데, CircularProgressIndicator 위젯을 사용하고 있습니다. 하지만 높이와 너비를 더 크게 만드는 방법이 있는지 궁금합니다. 너무 작아서요. 그래서 누군가 이 문제를 해결해 줄 수 있을까요? 답변 CircularProgressIndicator 위젯을 SizedBox 위젯으로 감쌀 수 있습니다. @override Widget build(BuildContext context) { return Container( child: Center( child: Column( crossAxisAlignment: CrossAxisAlignment.center, children: [ SizedBox( child: CircularProgressIndicator.. 2023. 5. 18.
Flutter 코코아팟이 설치되어 있지 않거나 올바른 상태가 아닙니다., CocoaPods not installed or not in valid state 질문 iPhone 11 Pro Max에서 디버그 모드로 lib/main.dart를 실행 중... 경고: CocoaPods가 설치되어 있지만 손상되었습니다. pod install을 건너뜁니다. CocoaPods가 설치되어 있지만 작동하지 않습니다. CocoaPods가 설치된 Ruby 버전과 호출하는 버전이 다른 경우 발생할 수 있습니다. 일반적으로 이 문제는 CocoaPods를 재설치하여 해결할 수 있습니다. 자세한 정보는 https://github.com/flutter/flutter/issues/14293을 참조하세요. 재설치 방법: sudo gem install cocoapods CocoaPods가 설치되어 있지 않거나 유효한 상태가 아닙니다. iPhone 11 Pro Max에서 애플리케이션을 실행하는.. 2023. 5. 18.
Flutter 플러터/리액트 네이티브/안드로이드 네이티브 앱의 SHA-1을 생성하세요., Generate SHA-1 for Flutter/React-Native/Android-Native app 질문 I'm trying to generate a SHA-1 for a Flutter app, for Android studio to support Google Sign in, but I don't know how to do that, I saw some posts that indicate to run a command, but there I need a jks file I guess, and flutter doesn't create that. Could someone help me? 답변 터미널 터미널에서 프로젝트 폴더로 이동합니다. 맥 keytool -list -v -keystore ~/.android/debug.keystore -alias androiddebugkey -storepass androi.. 2023. 5. 17.
Flutter 플러터에서 "뒤로" 버튼을 무시하는 방법은 무엇인가요? [중복], How To Override the “Back” button in Flutter? [duplicate] 질문 On my Home widget, when user taps system back button, I want to show a confirmation dialog asking "Do you want to exit the App?" I don't understand how I should override or handle the system back button. 답변 WillPopScope을(를) 사용하여 이를 달성할 수 있습니다. 예시: import 'dart:async'; import 'package:flutter/material.dart'; class HomePage extends StatefulWidget { HomePage({Key key, this.title}) :super(key: ke.. 2023. 5. 17.