본문 바로가기

Flutter397

Flutter Firebase (Phone Auth) iOS 오류 해결: 사용자 정의 URL 스키마 등록하기, Firebase (Phone Auth) Getting iOS error: register custom URL scheme 질문 내 플러터 앱은 Firebase Auth (Phone)을 사용합니다. 계속해서 다음 오류가 발생합니다: 'Please register custom URL scheme 'com.googleusercontent.apps.602546125958-5lk04ghhdfj5xxxxxxxx''. 다음과 같이 info.plist에 URL 스키마를 추가했지만, 동일한 오류가 발생합니다. 2020-04-29 20:40:05.173962-0400 Runner[395:20944] *** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'Please register custom URL scheme 'com.googleu.. 2023. 12. 15.
Xcode에서 iOS 앱을 빌드하는 동안 오류가 발생했습니다: 샌드박스: rsync.samba (13105)가 파일 쓰기 생성을 거부했습니다. Flutter가 파일에 쓰지 못했습니다., error while build iOS app in Xcode : Sandbox: rsync.s.. 질문 while building iOS app on Xcode I got these 2 errors, I tried to build the iOS on visual studio code and I got the same errors. the operating system macOS 14.0 beta. processor M1 Pro Could downgrading the operating system fix that issue? 답변 Xcode 프로젝트 빌드 옵션을 ENABLE_USER_SCRIPT_SANDBOXING으로 'No'로 업데이트하세요. 2023. 12. 15.
Flutter 플러터에서 이전 페이지로 돌아가고 새로고침하는 방법은 무엇인가요?, How to go back and refresh the previous page in Flutter? 질문 나는 홈페이지가 있습니다. 클릭하면 탐색을 통해 다른 페이지로 이동하고, 그곳에서 몇 가지 작업을 수행한 다음 뒤로 버튼을 누르면 홈페이지로 돌아갑니다. 그러나 문제는 홈페이지가 새로 고쳐지지 않는다는 것입니다. 뒤로 버튼을 누를 때 페이지를 다시로드하고 홈페이지를 새로 고칠 수 있는 방법이 있을까요? 답변 첫 번째 페이지로 돌아갈 때 이렇게 API 호출을 트리거할 수 있습니다. 의사 코드 class PageOne extends StatefulWidget { @override _PageOneState createState() => new _PageOneState(); } class _PageOneState extends State { _getRequests()async{ } @override Wid.. 2023. 12. 11.
Flutter GridView.Builder의 자식들에게 높이를 주는 방법은 무엇인가요?, flutter how to give height to the childrens of GridView.Builder 질문 나는 gridview.builder의 자식에게 높이를 주려고 시도하고 있지만, 받아들이지 않고 있습니다. 컨테이너를 사용하여 시도했지만 작동하지 않습니다... 도와주세요 GridView.builder( gridDelegate: SliverGridDelegateWithFixedCrossAxisCount( crossAxisCount: 2, ), itemCount: snapshot.data.length, itemBuilder: (BuildContext context, int index) { return Container( height: 280.0, child: Column( children: [ Padding( padding: EdgeInsets.fromLTRB(10.0, 10.0, 10.0, 10.0).. 2023. 12. 11.