본문 바로가기
728x90

분류 전체보기49

Flutter ios app icon 변경 (초 간단) 참고 https://docs.flutter.dev/deployment/ios#add-an-app-icon Build and release an iOS app How to release a Flutter app to the App Store. docs.flutter.dev ios폴더를 xcode로 열고 Assets > Appicon을 드래앤 드롭으로 사이즈에 맞는 이미지 껴 놓으면 끝 아래의 LaunchImage는 applestore에 나타낼 이미지다. 그리고 flutter run / f5로 실행하면 AppIcon이 변경되는것을 확인 할 수 있다. 2023. 9. 21.
"Error 'DT_TOOLCHAIN_DIR cannot be used to evaluate LIBRARY_SEARCH_PATHS, use TOOLCHAIN_DIR instead' in Xcode 15 beta 5" Unable to boot device because it cannot be located on disk. The device's data is no longer present at /Users/kimjunho/Library/Developer/CoreSimulator/Devices/DA5639F7-A1A8-4471-949D-42F6CF8A4875/data. Use the device manager in Xcode or the simctl command line tool to either delete the device properly or erase contents and settings. details 더보기 Unable to boot device because it cannot be located o.. 2023. 9. 20.
google play console error "couldn't find 'libflutter.so'" google play console에 새버전을 만들고 심사를 거칠때마다 나오는 에러로 거슬렸었는데, 어느날 갑자기 삘타서 계속 붙잡게 되었다. 아래의 링크를 통해 해당 에러에 대한 원인을 찾을 수 있었다. https://medium.com/codechai/flutter-app-couldnt-find-libflutter-so-c95ad81cbccd Flutter app: couldn’t find “libflutter.so” And how I fixed the issue. medium.com https://stackoverflow.com/questions/75797853/flutter-app-crashes-on-lib-arm64-couldnt-find-libflutter-so Flutter app crash.. 2023. 9. 12.
flutter webView 세팅 및 데이터 주고 받기 시작하기 사용할 도메인 https://www.chaam.co.kr/login 사용할 패키지 https://pub.dev/packages/webview_flutter project 생성 및 패키지 설치 flutter create chaam_webview dependencies에 추가 dependencies: webview_flutter: ^4.2.4 웹 뷰 띄우기 코드를 분석하기 전에 우선 빠르게 웹뷰를 띄어 보겠다. controller 생성 late final WebViewController controller = WebViewController() ..setJavaScriptMode(JavaScriptMode.unrestricted) ..setBackgroundColor(const Color(0x000.. 2023. 9. 10.
728x90