flutter 플러터 - inAppWebview onCreateWindow 팝업 닫을때 새로고침 현상
어이없는 문제로 몇시간을 날렸는지 모르겠다. InAppWebview에서 onCreateWindow 를 이용해 또 다른 웹 팝업창을 여는 작업중 팝업 윈도우를 닫을때마다 바깥쪽 InAppWebview 에서 리다이렉션 현상이 일어나 로그인 등에서 문제를 겪었다. 기존의 코드를 보면 onCreateWindow: (controller, action) { debugPrint("onCreateWindow"); return showDialog( context: context, barrierDismissible: true, builder: (context) { return Padding( padding: const EdgeInsets.only(top: 30.0), child: FractionallySizedBox( h..
Flutter
2023. 12. 6. 11:21