본문 바로가기
728x90

전체 글46

구글플레이, App Store 배포 심사 탈락 기록 처음으로 flutter로 개발한 어플을 구글플레이 ,App Store product 배포하면서 심사 탈락한 부분을 기록해 보았습니다. Apple develper 1. 카카오 소셜 로그인 인증코드 필요 Guideline 2.1 - Information Needed We have started the review of your app, but in addition to the demo account username and password you provided, we need an authentication code to access your app’s content and verify its functionality. App Review conducts a full review of all apps sub.. 2023. 12. 7.
Flutter Android 12이상에서의 defalut 스플래시 화면 처리 솔루션 문제 정의 flutter에서 splash screen을 디자인을 하였지만, android 12 이상에서는 기본적으로 제공되는스플래시 화면으로 2번 나오는 splash화면이 은근 불편함을 줍니다. 첫번째 하얀 배경에 아이콘이 의도하지 않는 스플래시 화면입니다. 그래서 Flutter에서 기본 스플래시 화면을 빼거나 바꿀 수 있는가? The default splash screen cannot be overridden with Dart/Flutter alone. They are controls shown by the native Android/iOS context while the Flutter runtime is initializing. As such, any splash screen widget you cr.. 2023. 12. 5.
Flutter Autocomplete 커스텀 flutter Autocomplete optionsView와 fieldView 커스텀 방법입니다. Autocomplete 관련 검색하는데 자료가 별로 없어서 소스코드를 뜯어보고 핵심 부분을 기록하였습니다. Autocomplete Autocomplete( initialValue: TextEditingValue( text: //학교에서 잘라서 주소 빼고 보여주기 "${_textControllers[FieldKey.schoolName]!.text.split('학교')[0]}학교", ), optionsMaxHeight: 200.0, displayStringForOption: (option) => option.schoolName, onSelected: (option) async { // 옵션이 선택될 때의 동작.. 2023. 11. 21.
Error type argument 'nw_proxy_config_t' 에러 로그 Error (Xcode): type argument 'nw_proxy_config_t' (aka 'struct nw_proxy_config *') is neither an Objective-C object nor a block type /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator17.0.sdk/System/Library/Frameworks/WebKit.framework/Headers/WKWebsiteDataStore.h:119:46 Parse Issue (Xcode): Could not build module 'WebKit' /Users/kimj.. 2023. 10. 21.
728x90