This repository was archived by the owner on Feb 22, 2023. It is now read-only.
File tree 2 files changed +3
-2
lines changed
packages/webview_flutter/webview_flutter
2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 5
5
* Fixes avoid_redundant_argument_values lint warnings and minor typos.
6
6
* Ignores unnecessary import warnings in preparation for [ upcoming Flutter changes] ( https://github.com/flutter/flutter/pull/104231 ) .
7
7
* Updates references to the obsolete master branch.
8
+ * Fixes typo from lowercase to uppercase.
8
9
9
10
## 3.0.4
10
11
Original file line number Diff line number Diff line change @@ -316,7 +316,7 @@ class _WebViewState extends State<WebView> {
316
316
webViewPlatformCallbacksHandler: _platformCallbacksHandler,
317
317
javascriptChannelRegistry: _javascriptChannelRegistry,
318
318
gestureRecognizers: widget.gestureRecognizers,
319
- creationParams: _creationParamsfromWidget (widget),
319
+ creationParams: _creationParamsFromWidget (widget),
320
320
);
321
321
}
322
322
@@ -361,7 +361,7 @@ class _WebViewState extends State<WebView> {
361
361
}
362
362
}
363
363
364
- CreationParams _creationParamsfromWidget (WebView widget) {
364
+ CreationParams _creationParamsFromWidget (WebView widget) {
365
365
return CreationParams (
366
366
initialUrl: widget.initialUrl,
367
367
webSettings: _webSettingsFromWidget (widget),
You can’t perform that action at this time.
0 commit comments