Notice
Recent Posts
Recent Comments
Link
«   2025/01   »
1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31
Tags
more
Archives
Today
Total
관리 메뉴

coding etude

[flutter] webview 에서 웹페이지가 불안정한 문제 본문

Flutter(Dart)

[flutter] webview 에서 웹페이지가 불안정한 문제

코코리니 2024. 5. 27. 16:37

webview controller 를 설정하면서 javascriptMode를 활성화 해주는 옵션을 넣어주면 해결 된다.

 

_controller = WebViewController.fromPlatformCreationParams(params)
	..setJavaScriptMode(JavaScriptMode.unrestricted);

 

끝.