File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
packages/webview_flutter/webview_flutter Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 55* Fixes avoid_redundant_argument_values lint warnings and minor typos.
66* Ignores unnecessary import warnings in preparation for [ upcoming Flutter changes] ( https://github.com/flutter/flutter/pull/104231 ) .
77* Updates references to the obsolete master branch.
8+ * Fixes typo from lowercase to uppercase.
89
910## 3.0.4
1011
Original file line number Diff line number Diff line change @@ -316,7 +316,7 @@ class _WebViewState extends State<WebView> {
316316 webViewPlatformCallbacksHandler: _platformCallbacksHandler,
317317 javascriptChannelRegistry: _javascriptChannelRegistry,
318318 gestureRecognizers: widget.gestureRecognizers,
319- creationParams: _creationParamsfromWidget (widget),
319+ creationParams: _creationParamsFromWidget (widget),
320320 );
321321 }
322322
@@ -361,7 +361,7 @@ class _WebViewState extends State<WebView> {
361361 }
362362}
363363
364- CreationParams _creationParamsfromWidget (WebView widget) {
364+ CreationParams _creationParamsFromWidget (WebView widget) {
365365 return CreationParams (
366366 initialUrl: widget.initialUrl,
367367 webSettings: _webSettingsFromWidget (widget),
You can’t perform that action at this time.
0 commit comments