Skip to content
This repository has been archived by the owner on Feb 22, 2023. It is now read-only.

Commit

Permalink
[webview_flutter] Fix typo (#6650)
Browse files Browse the repository at this point in the history
* Update webview.dart

* Update CHANGELOG.md

* Update CHANGELOG.md
  • Loading branch information
fzyzcjy committed Nov 4, 2022
1 parent 3ec3cc1 commit 0e5e90f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions packages/webview_flutter/webview_flutter/CHANGELOG.md
Expand Up @@ -5,6 +5,7 @@
* Fixes avoid_redundant_argument_values lint warnings and minor typos.
* Ignores unnecessary import warnings in preparation for [upcoming Flutter changes](https://github.com/flutter/flutter/pull/104231).
* Updates references to the obsolete master branch.
* Fixes typo from lowercase to uppercase.

## 3.0.4

Expand Down
4 changes: 2 additions & 2 deletions packages/webview_flutter/webview_flutter/lib/src/webview.dart
Expand Up @@ -316,7 +316,7 @@ class _WebViewState extends State<WebView> {
webViewPlatformCallbacksHandler: _platformCallbacksHandler,
javascriptChannelRegistry: _javascriptChannelRegistry,
gestureRecognizers: widget.gestureRecognizers,
creationParams: _creationParamsfromWidget(widget),
creationParams: _creationParamsFromWidget(widget),
);
}

Expand Down Expand Up @@ -361,7 +361,7 @@ class _WebViewState extends State<WebView> {
}
}

CreationParams _creationParamsfromWidget(WebView widget) {
CreationParams _creationParamsFromWidget(WebView widget) {
return CreationParams(
initialUrl: widget.initialUrl,
webSettings: _webSettingsFromWidget(widget),
Expand Down

0 comments on commit 0e5e90f

Please sign in to comment.