ios flutter webview safeArea setting notouch 영역 다음에 웹뷰가 보인다
runApp(MaterialApp(
home: SafeArea(child: InAppWebView(
initialUrlRequest: URLRequest(
url: WebUri.uri(Uri.parse(conDomain)),
),
onWebViewCreated: (controller) async {
webView = controller;
Cookie? cookie = await cookieManager.getCookie(url: conUrl, name: "PHPSESSID");
debugPrint("333333:"+cookie.toString());
},
initialSettings: options,
),
)
));
댓글
댓글 쓰기