Skip to content

Commit c7356f3

Browse files
fixed WebView.storyboard path for iOS, added v0.3.2
1 parent 67a7341 commit c7356f3

9 files changed

+93
-131
lines changed

.idea/workspace.xml

+75-113
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 0.3.2
2+
3+
- fixed WebView.storyboard path for iOS
4+
15
## 0.3.1
26

37
- fixed README.md example

README.md

+4
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,8 @@ Classes:
2727
Screenshots [here](#screenshots).
2828

2929
### `InAppBrowser` class
30+
Native WebView.
31+
3032
Create a Class that extends the `InAppBrowser` Class in order to override the callbacks to manage the browser events.
3133
Example:
3234
```dart
@@ -432,6 +434,8 @@ inAppBrowser.removeJavaScriptHandler(String handlerName, int index);
432434

433435

434436
### `ChromeSafariBrowser` class
437+
[Chrome Custom Tabs](https://developer.android.com/reference/android/support/customtabs/package-summary) on Android / [SFSafariViewController](https://developer.apple.com/documentation/safariservices/sfsafariviewcontroller) on iOS.
438+
435439
Create a Class that extends the `ChromeSafariBrowser` Class in order to override the callbacks to manage the browser events. Example:
436440
```dart
437441
import 'package:flutter/material.dart';

example/ios/Runner.xcodeproj/project.pbxproj

+2-6
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,9 @@
1616
74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 74858FAE1ED2DC5600515810 /* AppDelegate.swift */; };
1717
9705A1C61CF904A100538489 /* Flutter.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9740EEBA1CF902C7004384FC /* Flutter.framework */; };
1818
9705A1C71CF904A300538489 /* Flutter.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 9740EEBA1CF902C7004384FC /* Flutter.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
19-
97C146FC1CF9000F007C117D /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FA1CF9000F007C117D /* Main.storyboard */; };
2019
97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FD1CF9000F007C117D /* Assets.xcassets */; };
2120
97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */; };
22-
ED5EF13121506A3E0065FD45 /* WebView.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = ED5EF108214FF6F80065FD45 /* WebView.storyboard */; };
21+
EDC1147F21735BC200D2247A /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FA1CF9000F007C117D /* Main.storyboard */; };
2322
/* End PBXBuildFile section */
2423

2524
/* Begin PBXCopyFilesBuildPhase section */
@@ -55,7 +54,6 @@
5554
97C147001CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; };
5655
97C147021CF9000F007C117D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
5756
E8D91E403808A7540F18B75D /* Pods_Runner.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Runner.framework; sourceTree = BUILT_PRODUCTS_DIR; };
58-
ED5EF108214FF6F80065FD45 /* WebView.storyboard */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; path = WebView.storyboard; sourceTree = "<group>"; };
5957
/* End PBXFileReference section */
6058

6159
/* Begin PBXFrameworksBuildPhase section */
@@ -132,7 +130,6 @@
132130
1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */,
133131
74858FAE1ED2DC5600515810 /* AppDelegate.swift */,
134132
74858FAD1ED2DC5600515810 /* Runner-Bridging-Header.h */,
135-
ED5EF108214FF6F80065FD45 /* WebView.storyboard */,
136133
);
137134
path = Runner;
138135
sourceTree = "<group>";
@@ -209,11 +206,10 @@
209206
buildActionMask = 2147483647;
210207
files = (
211208
97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */,
209+
EDC1147F21735BC200D2247A /* Main.storyboard in Resources */,
212210
3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */,
213-
ED5EF13121506A3E0065FD45 /* WebView.storyboard in Resources */,
214211
97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */,
215212
2D5378261FAA1A9400D5DBA9 /* flutter_assets in Resources */,
216-
97C146FC1CF9000F007C117D /* Main.storyboard in Resources */,
217213
);
218214
runOnlyForDeploymentPostprocessing = 0;
219215
};

ios/Classes/SwiftFlutterPlugin.swift

+2-2
Original file line numberDiff line numberDiff line change
@@ -307,8 +307,8 @@ public class SwiftFlutterPlugin: NSObject, FlutterPlugin {
307307
browserOptions = InAppBrowserOptions()
308308
browserOptions.parse(options: options)
309309
}
310-
311-
let storyboard = UIStoryboard(name: WEBVIEW_STORYBOARD, bundle: nil)
310+
311+
let storyboard = UIStoryboard(name: WEBVIEW_STORYBOARD, bundle: Bundle(for: InAppBrowserFlutterPlugin.self))
312312
let vc = storyboard.instantiateViewController(withIdentifier: WEBVIEW_STORYBOARD_CONTROLLER_ID)
313313
self.webViewControllers[uuid] = vc as? InAppBrowserWebViewController
314314
let webViewController: InAppBrowserWebViewController = self.webViewControllers[uuid] as! InAppBrowserWebViewController

example/ios/Runner/WebView.storyboard ios/Storyboards/WebView.storyboard

+1-9
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<adaptation id="fullscreen"/>
55
</device>
66
<dependencies>
7-
<deployment identifier="iOS"/>
7+
<deployment version="2048" identifier="iOS"/>
88
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="14283.14"/>
99
<capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/>
1010
</dependencies>
@@ -21,9 +21,6 @@
2121
<rect key="frame" x="0.0" y="0.0" width="414" height="736"/>
2222
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
2323
<subviews>
24-
<imageView opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" image="LaunchImage" translatesAutoresizingMaskIntoConstraints="NO" id="5cB-8U-Az3">
25-
<rect key="frame" x="206.66666666666666" y="367.66666666666669" width="1" height="1"/>
26-
</imageView>
2724
<view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="gA9-n8-qaQ" customClass="WKWebView_IBWrapper" customModule="flutter_inappbrowser">
2825
<rect key="frame" x="0.0" y="66" width="414" height="626"/>
2926
<color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
@@ -71,15 +68,13 @@
7168
</subviews>
7269
<color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
7370
<constraints>
74-
<constraint firstItem="5cB-8U-Az3" firstAttribute="centerY" secondItem="ISu-6l-aO1" secondAttribute="centerY" id="7gS-HV-ExU"/>
7571
<constraint firstItem="gA9-n8-qaQ" firstAttribute="leading" secondItem="ISu-6l-aO1" secondAttribute="leading" id="8YB-0N-UzE"/>
7672
<constraint firstItem="gA9-n8-qaQ" firstAttribute="trailing" secondItem="ISu-6l-aO1" secondAttribute="trailing" id="Dhn-ga-7dD"/>
7773
<constraint firstItem="gA9-n8-qaQ" firstAttribute="bottom" secondItem="8Pf-5R-cFf" secondAttribute="top" id="KeI-jL-Qoi"/>
7874
<constraint firstItem="gA9-n8-qaQ" firstAttribute="trailing" secondItem="8Pf-5R-cFf" secondAttribute="trailing" id="OPR-aA-bxG"/>
7975
<constraint firstItem="vlz-kT-71x" firstAttribute="leading" secondItem="gA9-n8-qaQ" secondAttribute="leading" id="OZ2-Kx-4su"/>
8076
<constraint firstItem="gA9-n8-qaQ" firstAttribute="leading" secondItem="8Pf-5R-cFf" secondAttribute="leading" id="RGD-3l-ddR"/>
8177
<constraint firstItem="gA9-n8-qaQ" firstAttribute="top" secondItem="vlz-kT-71x" secondAttribute="bottom" id="Sjd-dV-din"/>
82-
<constraint firstItem="5cB-8U-Az3" firstAttribute="centerX" secondItem="ISu-6l-aO1" secondAttribute="centerX" id="Wh0-qC-IDM"/>
8378
<constraint firstItem="vlz-kT-71x" firstAttribute="trailing" secondItem="gA9-n8-qaQ" secondAttribute="trailing" id="XRo-VA-krE"/>
8479
<constraint firstItem="vlz-kT-71x" firstAttribute="top" secondItem="eCU-xC-qdo" secondAttribute="bottom" id="bWR-2T-bWy"/>
8580
<constraint firstItem="HWt-17-FMf" firstAttribute="centerX" secondItem="gA9-n8-qaQ" secondAttribute="centerX" id="dV8-Dm-9mc"/>
@@ -107,7 +102,4 @@
107102
<point key="canvasLocation" x="433.33333333333337" y="-217.66304347826087"/>
108103
</scene>
109104
</scenes>
110-
<resources>
111-
<image name="LaunchImage" width="1" height="1"/>
112-
</resources>
113105
</document>

ios/flutter_inappbrowser.podspec

+1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ A new Flutter plugin.
1313
s.author = { 'Your Company' => 'email@example.com' }
1414
s.source = { :path => '.' }
1515
s.source_files = 'Classes/**/*'
16+
s.resources = 'Storyboards/**/*.storyboard'
1617
s.public_header_files = 'Classes/**/*.h'
1718
s.dependency 'Flutter'
1819

lib/flutter_inappbrowser.dart

+3
Original file line numberDiff line numberDiff line change
@@ -409,13 +409,16 @@ class InAppBrowser {
409409
}
410410

411411
///Give the host application a chance to take control when a URL is about to be loaded in the current WebView.
412+
///
412413
///**NOTE**: In order to be able to listen this event, you need to set `useShouldOverrideUrlLoading` option to `true`.
413414
void shouldOverrideUrlLoading(String url) {
414415

415416
}
416417

417418
///Event fires when the [InAppBrowser] webview loads a resource.
419+
///
418420
///**NOTE**: In order to be able to listen this event, you need to set `useOnLoadResource` option to `true`.
421+
///
419422
///**NOTE only for iOS**: In some cases, the [response.data] of a [response] with `text/html` encoding could be empty.
420423
void onLoadResource(WebResourceResponse response, WebResourceRequest request) {
421424

pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: flutter_inappbrowser
22
description: A Flutter plugin that allows you to open an in-app browser window. (inspired by the popular cordova-plugin-inappbrowser).
3-
version: 0.3.1
3+
version: 0.3.2
44
author: Lorenzo Pichilli <pichillilorenzo@gmail.com>
55
homepage: https://github.com/pichillilorenzo/flutter_inappbrowser
66

0 commit comments

Comments
 (0)