aos,ios둘다 문자본인인증은되는데 패스만안되서 하루 시간날려서 적어놓음
opus,gemini3.0 모두 못찾은거 gpt5.2가 힌트줬네
if (Platform.isAndroid && urlStr.startsWith('intent://')) {
try {
WebView 로딩을 먼저 끊어야 ERR_UNKNOWN_URL_SCHEME를 막을 확률이 큼
await controller.stopLoading();
} catch (_) {}
_handleIntentUrl(urlStr);
return NavigationActionPolicy.CANCEL;
}
위같이 await controller.stopLoading() 이게 핵심임
반응형
'flutter > ios' 카테고리의 다른 글
| NaverThirdPartyLogin bitcode (0) | 2024.11.26 |
|---|---|
| ios 스플래시 사용시 전체화면 (0) | 2024.03.21 |
| xcode 14.3 Command PhaseScriptExecution failed with a nonzero exit (0) | 2023.05.09 |
| adb command not found (0) | 2023.02.02 |
| Xcode doesn’t support iPhone’s iOS (0) | 2022.09.22 |