initializeIOSWebView function

void initializeIOSWebView()

Initializes WebView for iOS platform

On iOS, webview_flutter provides native WebKit integration. Users need:

  • iOS 11.0 or higher
  • wkwebview package (automatically handled by webview_flutter)

Implementation

void initializeIOSWebView() {
  if (defaultTargetPlatform == TargetPlatform.iOS) {
    // Initialization happens automatically when WebViewController is created
    debugPrint('iOS WebView initialized');
  }
}