File tree Expand file tree Collapse file tree
packages/webview_flutter/webview_flutter Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ ## 4.14.2
2+
3+ * Migrate the iOS example to UIScene
4+
15## 4.14.1
26
37* Adds documentation for ` NavigationDelegate ` callback parameters.
Original file line number Diff line number Diff line change @@ -6,12 +6,15 @@ import Flutter
66import UIKit
77
88@main
9- @objc class AppDelegate : FlutterAppDelegate {
9+ @objc class AppDelegate : FlutterAppDelegate , FlutterImplicitEngineDelegate {
1010 override func application(
1111 _ application: UIApplication ,
1212 didFinishLaunchingWithOptions launchOptions: [ UIApplication . LaunchOptionsKey : Any ] ?
1313 ) -> Bool {
14- GeneratedPluginRegistrant . register ( with: self )
1514 return super. application ( application, didFinishLaunchingWithOptions: launchOptions)
1615 }
16+
17+ func didInitializeImplicitFlutterEngine( _ engineBridge: FlutterImplicitEngineBridge ) {
18+ GeneratedPluginRegistrant . register ( with: engineBridge. pluginRegistry)
19+ }
1720}
Original file line number Diff line number Diff line change 2828 <string >LaunchScreen </string >
2929 <key >UIMainStoryboardFile </key >
3030 <string >Main </string >
31+ <key >UIApplicationSceneManifest </key >
32+ <dict >
33+ <key >UIApplicationSupportsMultipleScenes </key >
34+ <false />
35+ <key >UISceneConfigurations </key >
36+ <dict >
37+ <key >UIWindowSceneSessionRoleApplication </key >
38+ <array >
39+ <dict >
40+ <key >UISceneClassName </key >
41+ <string >UIWindowScene </string >
42+ <key >UISceneDelegateClassName </key >
43+ <string >FlutterSceneDelegate </string >
44+ <key >UISceneConfigurationName </key >
45+ <string >flutter </string >
46+ <key >UISceneStoryboardFile </key >
47+ <string >Main </string >
48+ </dict >
49+ </array >
50+ </dict >
51+ </dict >
3152 <key >UISupportedInterfaceOrientations </key >
3253 <array >
3354 <string >UIInterfaceOrientationPortrait </string >
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ name: webview_flutter
22description : A Flutter plugin that provides a WebView widget backed by the system webview.
33repository : https://github.com/flutter/packages/tree/main/packages/webview_flutter/webview_flutter
44issue_tracker : https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+webview%22
5- version : 4.14.1
5+ version : 4.14.2
66
77environment :
88 sdk : ^3.10.0
You can’t perform that action at this time.
0 commit comments