Skip to content

The webview_flutter scroll bar appears on the left #102284

@chenchat

Description

@chenchat

Steps to Reproduce

  1. flutter create a new app
  2. Edit the pubspec.yaml file by relying on the following two:
    webview_flutter: ^3.0.2
    flutter_facebook_auth: ^4.3.0
  3. Use webview_flutter on your pages

Expected results: The scroll bar appears on the right

Actual results: The scroll bar appears on the left

Additional information

Screenrecorder-2022-04-21-15-37-54-230.mp4

In Flutter2.10.5, integrating webview_flutter and flutter_facebook_auth, on Android the webView_flutter scroll bar appears on the left, You just rely on flutter_facebook_auth, you don't really need to use it

Also, this issue is from Flutter2.10.1 onwards, not previous versions

So there are two ways to solve this problem:

  1. Use versions prior to Flutter 2.10.1
  2. Remove flutter_facebook_auth in pubspec.yaml

But I now need to use the new version of Flutter and also use flutter_facebook_auth

Code sample pubspec.yaml
name: webview_demo
description: A new Flutter project.

publish_to: 'none' # Remove this line if you wish to publish to pub.dev
version: 1.0.0+1

environment:
  sdk: ">=2.16.2 <3.0.0"

dependencies:
  flutter:
    sdk: flutter
  cupertino_icons: ^1.0.2
  webview_flutter: ^3.0.2
  flutter_facebook_auth: ^4.3.0

dev_dependencies:
  flutter_test:
    sdk: flutter
  flutter_lints: ^1.0.0

flutter:
  uses-material-design: true

main.dart

import 'package:flutter/material.dart';
import 'package:webview_flutter/webview_flutter.dart';

void main() {
  runApp(const MyApp());
}

class MyApp extends StatelessWidget {
  const MyApp({Key? key}) : super(key: key);

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter Demo',
      theme: ThemeData(
        primarySwatch: Colors.blue,
      ),
      home: Scaffold(
        appBar: AppBar(title: const Text('demo')),
        body: const WebView(
          initialUrl: 'https://www.qq.com/',
          javascriptMode: JavascriptMode.unrestricted,
        ),
      ),
    );
  }
}
Logs
executing: /Users/hmnj/Library/Android/sdk/build-tools/32.1.0-rc1/aapt dump xmltree /Users/hmnj/code/demo/webview_demo/build/app/outputs/flutter-apk/app.apk AndroidManifest.xml
[  +51 ms] Exit code 0 from: /Users/hmnj/Library/Android/sdk/build-tools/32.1.0-rc1/aapt dump xmltree /Users/hmnj/code/demo/webview_demo/build/app/outputs/flutter-apk/app.apk AndroidManifest.xml
[        ] N: android=http://schemas.android.com/apk/res/android
             E: manifest (line=2)
               A: android:versionCode(0x0101021b)=(type 0x10)0x1
               A: android:versionName(0x0101021c)="1.0.0" (Raw: "1.0.0")
               A: android:compileSdkVersion(0x01010572)=(type 0x10)0x1f
               A: android:compileSdkVersionCodename(0x01010573)="12" (Raw: "12")
               A: package="com.example.webview_demo" (Raw: "com.example.webview_demo")
               A: platformBuildVersionCode=(type 0x10)0x1f
               A: platformBuildVersionName=(type 0x10)0xc
               E: uses-sdk (line=7)
                 A: android:minSdkVersion(0x0101020c)=(type 0x10)0x13
                 A: android:targetSdkVersion(0x01010270)=(type 0x10)0x1f
               E: uses-permission (line=14)
                 A: android:name(0x01010003)="android.permission.INTERNET" (Raw: "android.permission.INTERNET")
               E: uses-permission (line=15)
                 A: android:name(0x01010003)="com.google.android.gms.permission.AD_ID" (Raw: "com.google.android.gms.permission.AD_ID")
               E: uses-permission (line=16)
                 A: android:name(0x01010003)="com.google.android.finsky.permission.BIND_GET_INSTALL_REFERRER_SERVICE" (Raw: "com.google.android.finsky.permission.BIND_GET_INSTALL_REFERRER_SERVICE")
               E: application (line=18)
                 A: android:label(0x01010001)="webview_demo" (Raw: "webview_demo")
                 A: android:icon(0x01010002)=@0x7f0c0000
                 A: android:name(0x01010003)="android.app.Application" (Raw: "android.app.Application")
                 A: android:debuggable(0x0101000f)=(type 0x12)0xffffffff
                 A: android:supportsRtl(0x010103af)=(type 0x12)0xffffffff
                 A: android:appComponentFactory(0x0101057a)="androidx.core.app.CoreComponentFactory" (Raw: "androidx.core.app.CoreComponentFactory")
                 E: activity (line=25)
                   A: android:theme(0x01010000)=@0x7f0e00a5
                   A: android:name(0x01010003)="com.example.webview_demo.MainActivity" (Raw: "com.example.webview_demo.MainActivity")
                   A: android:exported(0x01010010)=(type 0x12)0xffffffff
                   A: android:launchMode(0x0101001d)=(type 0x10)0x1
                   A: android:configChanges(0x0101001f)=(type 0x11)0x40003fb4
                   A: android:windowSoftInputMode(0x0101022b)=(type 0x11)0x10
                   A: android:hardwareAccelerated(0x010102d3)=(type 0x12)0xffffffff
                   E: meta-data (line=40)
                     A: android:name(0x01010003)="io.flutter.embedding.android.NormalTheme" (Raw: "io.flutter.embedding.android.NormalTheme")
                     A: android:resource(0x01010025)=@0x7f0e00a6
                   E: intent-filter (line=44)
                     E: action (line=45)
                       A: android:name(0x01010003)="android.intent.action.MAIN" (Raw: "android.intent.action.MAIN")
                     E: category (line=47)
                       A: android:name(0x01010003)="android.intent.category.LAUNCHER" (Raw: "android.intent.category.LAUNCHER")
                 E: meta-data (line=54)
                   A: android:name(0x01010003)="flutterEmbedding" (Raw: "flutterEmbedding")
                   A: android:value(0x01010024)=(type 0x10)0x2
                 E: uses-library (line=58)
                   A: android:name(0x01010003)="androidx.window.extensions" (Raw: "androidx.window.extensions")
                   A: android:required(0x0101028e)=(type 0x12)0x0
                 E: uses-library (line=61)
                   A: android:name(0x01010003)="androidx.window.sidecar" (Raw: "androidx.window.sidecar")
                   A: android:required(0x0101028e)=(type 0x12)0x0
                 E: activity (line=65)
                   A: android:theme(0x01010000)=@0x7f0e0169
                   A: android:name(0x01010003)="com.facebook.FacebookActivity" (Raw: "com.facebook.FacebookActivity")
                   A: android:configChanges(0x0101001f)=(type 0x11)0x5b0
                 E: activity (line=69)
                   A: android:name(0x01010003)="com.facebook.CustomTabMainActivity" (Raw: "com.facebook.CustomTabMainActivity")
                 E: activity (line=70)
                   A: android:name(0x01010003)="com.facebook.CustomTabActivity" (Raw: "com.facebook.CustomTabActivity")
                   A: android:exported(0x01010010)=(type 0x12)0xffffffff
                   E: intent-filter (line=73)
                     E: action (line=74)
                       A: android:name(0x01010003)="android.intent.action.VIEW" (Raw: "android.intent.action.VIEW")
                     E: category (line=76)
                       A: android:name(0x01010003)="android.intent.category.DEFAULT" (Raw: "android.intent.category.DEFAULT")
                     E: category (line=77)
                       A: android:name(0x01010003)="android.intent.category.BROWSABLE" (Raw: "android.intent.category.BROWSABLE")
                     E: data (line=79)
                       A: android:scheme(0x01010027)="fbconnect" (Raw: "fbconnect")
                       A: android:host(0x01010028)="cct.com.example.webview_demo" (Raw: "cct.com.example.webview_demo")
                 E: provider (line=93)
                   A: android:name(0x01010003)="com.facebook.internal.FacebookInitProvider" (Raw: "com.facebook.internal.FacebookInitProvider")
                   A: android:exported(0x01010010)=(type 0x12)0x0
                   A: android:authorities(0x01010018)="com.example.webview_demo.FacebookInitProvider" (Raw: "com.example.webview_demo.FacebookInitProvider")
                 E: receiver (line=98)
                   A: android:name(0x01010003)="com.facebook.CurrentAccessTokenExpirationBroadcastReceiver" (Raw: "com.facebook.CurrentAccessTokenExpirationBroadcastReceiver")
                   A: android:exported(0x01010010)=(type 0x12)0x0
                   E: intent-filter (line=101)
                     E: action (line=102)
                       A: android:name(0x01010003)="com.facebook.sdk.ACTION_CURRENT_ACCESS_TOKEN_CHANGED" (Raw: "com.facebook.sdk.ACTION_CURRENT_ACCESS_TOKEN_CHANGED")
                 E: receiver (line=105)
                   A: android:name(0x01010003)="com.facebook.AuthenticationTokenManager$CurrentAuthenticationTokenChangedBroadcastReceiver" (Raw:
                   "com.facebook.AuthenticationTokenManager$CurrentAuthenticationTokenChangedBroadcastReceiver")
                   A: android:exported(0x01010010)=(type 0x12)0x0
                   E: intent-filter (line=108)
                     E: action (line=109)
                       A: android:name(0x01010003)="com.facebook.sdk.ACTION_CURRENT_AUTHENTICATION_TOKEN_CHANGED" (Raw: "com.facebook.sdk.ACTION_CURRENT_AUTHENTICATION_TOKEN_CHANGED")
[  +17 ms] Stopping app 'app.apk' on MI 8.
[   +1 ms] executing: /Users/hmnj/Library/Android/sdk/platform-tools/adb -s 85d4d4 shell am force-stop com.example.webview_demo
[ +211 ms] executing: /Users/hmnj/Library/Android/sdk/platform-tools/adb -s 85d4d4 shell pm list packages com.example.webview_demo
[ +129 ms] package:com.example.webview_demo
[   +4 ms] executing: /Users/hmnj/Library/Android/sdk/platform-tools/adb -s 85d4d4 shell cat /data/local/tmp/sky.com.example.webview_demo.sha1
[  +82 ms] 690fcd21fbafe7391d487462fa5d162c04b4452d
[   +2 ms] Latest build already installed.
[   +1 ms] executing: /Users/hmnj/Library/Android/sdk/platform-tools/adb -s 85d4d4 shell -x logcat -v time -t 1
[ +209 ms] --------- beginning of main
                    04-21 15:24:39.565 I/libprocessgroup( 1633): Successfully killed process cgroup uid 99406 pid 26959 in 0ms
[  +26 ms] executing: /Users/hmnj/Library/Android/sdk/platform-tools/adb -s 85d4d4 shell am start -a android.intent.action.RUN -f 0x20000000 --ez enable-dart-profiling true --ez enable-checked-mode true
--ez verify-entry-points true com.example.webview_demo/com.example.webview_demo.MainActivity
[ +129 ms] Starting: Intent { act=android.intent.action.RUN flg=0x20000000 cmp=com.example.webview_demo/.MainActivity (has extras) }
[        ] Waiting for observatory port to be available...
[ +461 ms] Observatory URL on device: http://127.0.0.1:42555/9foz1ZcAnTc=/
[   +3 ms] executing: /Users/hmnj/Library/Android/sdk/platform-tools/adb -s 85d4d4 forward tcp:0 tcp:42555
[  +40 ms] 50715
[        ] Forwarded host port 50715 to device port 42555 for Observatory
[  +10 ms] Caching compiled dill
[  +21 ms] Connecting to service protocol: http://127.0.0.1:50715/9foz1ZcAnTc=/
[ +233 ms] Launching a Dart Developer Service (DDS) instance at http://127.0.0.1:0, connecting to VM service at http://127.0.0.1:50715/9foz1ZcAnTc=/.
[ +175 ms] DDS is listening at http://127.0.0.1:50719/D15aa5U3c0k=/.
[  +74 ms] Successfully connected to service protocol: http://127.0.0.1:50715/9foz1ZcAnTc=/
[  +85 ms] DevFS: Creating new filesystem on the device (null)
[  +26 ms] DevFS: Created new filesystem on the device (file:///data/user/0/com.example.webview_demo/code_cache/webview_demoNCJVWS/webview_demo/)
[   +2 ms] Updating assets
[  +82 ms] Syncing files to device MI 8...
[   +1 ms] <- reset
[        ] Compiling dart to kernel with 0 updated files
[        ] Processing bundle.
[   +2 ms] <- recompile package:webview_demo/main.dart 1539303f-f851-4deb-9cd0-77525ff01df4
[        ] <- 1539303f-f851-4deb-9cd0-77525ff01df4
[   +2 ms] Bundle processing done.
[  +39 ms] Updating files.
[        ] DevFS: Sync finished
[   +1 ms] Syncing files to device MI 8... (completed in 47ms)
[        ] Synced 0.0MB.
[   +3 ms] <- accept
[   +4 ms] Connected to _flutterView/0x7c3a5f8620.
[   +4 ms] Flutter run key commands.
[   +1 ms] r Hot reload. 🔥🔥🔥
[   +1 ms] R Hot restart.
[        ] h List all available interactive commands.
[        ] d Detach (terminate "flutter run" but leave application running).
[        ] c Clear the screen
[        ] q Quit (terminate the application on the device).
[        ] 💪 Running with sound null safety 💪
[   +1 ms] An Observatory debugger and profiler on MI 8 is available at: http://127.0.0.1:50719/D15aa5U3c0k=/
[  +31 ms] I/WebViewFactory(27110): Loading com.google.android.webview version 83.0.4103.101 (code 410410183)
[  +23 ms] I/cr_LibraryLoader(27110): Loaded native library version number "83.0.4103.101"
[        ] W/le.webview_dem(27110): Accessing hidden method Llibcore/io/Memory;->peekLong(JZ)J (greylist, reflection, allowed)
[        ] W/le.webview_dem(27110): Accessing hidden method Llibcore/io/Memory;->pokeLong(JJZ)V (greylist, reflection, allowed)
[        ] W/le.webview_dem(27110): Accessing hidden method Llibcore/io/Memory;->pokeInt(JIZ)V (greylist, reflection, allowed)
[        ] W/le.webview_dem(27110): Accessing hidden method Llibcore/io/Memory;->peekInt(JZ)I (greylist, reflection, allowed)
[        ] W/le.webview_dem(27110): Accessing hidden method Llibcore/io/Memory;->pokeByte(JB)V (greylist, reflection, allowed)
[        ] W/le.webview_dem(27110): Accessing hidden method Llibcore/io/Memory;->peekByte(J)B (greylist, reflection, allowed)
[        ] W/le.webview_dem(27110): Accessing hidden method Llibcore/io/Memory;->pokeByteArray(J[BII)V (greylist, reflection, allowed)
[        ] W/le.webview_dem(27110): Accessing hidden method Llibcore/io/Memory;->peekByteArray(J[BII)V (greylist, reflection, allowed)
[        ] I/cr_CachingUmaRecorder(27110): Flushed 3 samples from 3 histograms.
[        ] W/le.webview_dem(27110): Accessing hidden method Lsun/misc/Unsafe;->objectFieldOffset(Ljava/lang/reflect/Field;)J (greylist,core-platform-api, reflection, allowed)
[        ] W/le.webview_dem(27110): Accessing hidden method Lsun/misc/Unsafe;->getLong(Ljava/lang/Object;J)J (greylist,core-platform-api, reflection, allowed)
[        ] W/le.webview_dem(27110): Accessing hidden field Ljava/nio/Buffer;->address:J (greylist, reflection, allowed)
[        ] W/le.webview_dem(27110): Accessing hidden method Lsun/misc/Unsafe;->arrayBaseOffset(Ljava/lang/Class;)I (greylist,core-platform-api, reflection, allowed)
[        ] W/le.webview_dem(27110): Accessing hidden method Lsun/misc/Unsafe;->arrayIndexScale(Ljava/lang/Class;)I (greylist, reflection, allowed)
[        ] W/le.webview_dem(27110): Accessing hidden method Lsun/misc/Unsafe;->getInt(Ljava/lang/Object;J)I (greylist, reflection, allowed)
[        ] W/le.webview_dem(27110): Accessing hidden method Lsun/misc/Unsafe;->putInt(Ljava/lang/Object;JI)V (greylist, reflection, allowed)
[        ] W/le.webview_dem(27110): Accessing hidden method Lsun/misc/Unsafe;->getLong(Ljava/lang/Object;J)J (greylist,core-platform-api, reflection, allowed)
[        ] W/le.webview_dem(27110): Accessing hidden method Lsun/misc/Unsafe;->putLong(Ljava/lang/Object;JJ)V (greylist, reflection, allowed)
[        ] W/le.webview_dem(27110): Accessing hidden method Lsun/misc/Unsafe;->getObject(Ljava/lang/Object;J)Ljava/lang/Object; (greylist, reflection, allowed)
[        ] W/le.webview_dem(27110): Accessing hidden method Lsun/misc/Unsafe;->putObject(Ljava/lang/Object;JLjava/lang/Object;)V (greylist, reflection, allowed)
[        ] W/le.webview_dem(27110): Accessing hidden method Lsun/misc/Unsafe;->putObject(Ljava/lang/Object;JLjava/lang/Object;)V (greylist, linking, allowed)
[        ] W/le.webview_dem(27110): Accessing hidden method Lsun/misc/Unsafe;->getInt(Ljava/lang/Object;J)I (greylist, linking, allowed)
[        ] W/le.webview_dem(27110): Accessing hidden method Lsun/misc/Unsafe;->putInt(Ljava/lang/Object;JI)V (greylist, linking, allowed)
[        ] W/le.webview_dem(27110): Accessing hidden method Lsun/misc/Unsafe;->putLong(Ljava/lang/Object;JJ)V (greylist, linking, allowed)
[  +54 ms] W/chromium(27110): [WARNING:dns_config_service_posix.cc(341)] Failed to read DnsConfig.
[  +42 ms] D/ForceDarkHelper(27110): updateByCheckExcludeList: pkg: com.example.webview_demo activity: com.example.webview_demo.MainActivity@390029b
[  +44 ms] D/EgretLoader(27110): EgretLoader(Context context)
[        ] D/EgretLoader(27110): The context is not activity
[   +9 ms] W/le.webview_dem(27110): Accessing hidden method Landroid/media/AudioManager;->getOutputLatency(I)I (greylist, reflection, allowed)
[   +8 ms] W/cr_media(27110): Requires BLUETOOTH permission
[  +26 ms] W/VideoCapabilities(27110): Unsupported mime image/vnd.android.heic
[   +3 ms] W/VideoCapabilities(27110): Unsupported mime video/divx
[        ] W/VideoCapabilities(27110): Unsupported mime video/divx4
[   +2 ms] W/VideoCapabilities(27110): Unrecognized profile/level 0/3 for video/mpeg2
[   +2 ms] W/VideoCapabilities(27110): Unrecognized profile/level 0/3 for video/mpeg2
[        ] W/VideoCapabilities(27110): Unsupported mime video/x-ms-wmv
[  +25 ms] D/NetworkSecurityConfig(27110): No Network Security Config specified, using platform default
[ +127 ms] W/Gralloc3(27110): mapper 3.x is not supported
[  +57 ms] The Flutter DevTools debugger and profiler on MI 8 is available at: http://127.0.0.1:9102?uri=http://127.0.0.1:50719/D15aa5U3c0k=/
[  +28 ms] D/ForceDarkHelper(27110): updateByCheckExcludeList: pkg: com.example.webview_demo activity: com.example.webview_demo.MainActivity@390029b
[   +8 ms] D/ForceDarkHelper(27110): updateByCheckExcludeList: pkg: com.example.webview_demo activity: com.example.webview_demo.MainActivity@390029b
[   +4 ms] W/Gralloc3(27110): allocator 3.x is not supported
[   +3 ms] D/ForceDarkHelper(27110): updateByCheckExcludeList: pkg: com.example.webview_demo activity: com.example.webview_demo.MainActivity@390029b
[+2409 ms] I/chromium(27110): [INFO:CONSOLE(2)] "test", source: https://mat1.gtimg.com/qqcdn/xw/_next/static/2VZpOvy37I6fgLcvR25_x/pages/index.js (2)
[+1190 ms] I/chromium(27110): [INFO:CONSOLE(2)] "res ", source: https://mat1.gtimg.com/qqcdn/xw/_next/static/2VZpOvy37I6fgLcvR25_x/pages/index.js (2)
[   +1 ms] I/chromium(27110): [INFO:CONSOLE(2)] "elevatorData ", source: https://mat1.gtimg.com/qqcdn/xw/_next/static/2VZpOvy37I6fgLcvR25_x/pages/index.js (2)
[  +67 ms] I/chromium(27110): [INFO:CONSOLE(0)] "Uncaught (in promise) #<Object>", source: https://xw.qq.com/?f=qqcom (0)
Analyzing webview_demo...                                               
No issues found! (ran in 2.0s)
[✓] Flutter (Channel stable, 2.10.5, on macOS 12.2.1 21D62 darwin-arm, locale
    zh-Hans-CN)
    • Flutter version 2.10.5 at /Users/hmnj/fvm/versions/2.10.5
    • Upstream repository https://github.com/flutter/flutter.git
    • Framework revision 5464c5bac7 (3 days ago), 2022-04-18 09:55:37 -0700
    • Engine revision 57d3bac3dd
    • Dart version 2.16.2
    • DevTools version 2.9.2

[✓] Android toolchain - develop for Android devices (Android SDK version
    32.1.0-rc1)
    • Android SDK at /Users/hmnj/Library/Android/sdk
    • Platform android-32, build-tools 32.1.0-rc1
    • Java binary at: /Applications/Android
      Studio.app/Contents/jre/Contents/Home/bin/java
    • Java version OpenJDK Runtime Environment (build 11.0.11+0-b60-7772763)
    • All Android licenses accepted.

[✓] Xcode - develop for iOS and macOS (Xcode 13.3)
    • Xcode at /Applications/Xcode.app/Contents/Developer
    • CocoaPods version 1.11.2

[✓] Android Studio (version 2021.1)
    • Android Studio at /Applications/Android Studio.app/Contents
    • Flutter plugin can be installed from:
      🔨 https://plugins.jetbrains.com/plugin/9212-flutter
    • Dart plugin can be installed from:
      🔨 https://plugins.jetbrains.com/plugin/6351-dart
    • Java version OpenJDK Runtime Environment (build 11.0.11+0-b60-7772763)

[✓] VS Code (version 1.66.2)
    • VS Code at /Applications/Visual Studio Code.app/Contents
    • Flutter extension version 3.38.1

[✓] Connected device (3 available)
    • MI 8 (mobile)      • 85d4d4                                   •
      android-arm64 • Android 10 (API 29)
    • CC (mobile)        • cb89635ace483191eee912108c25e89e57d867ea • ios
      • iOS 15.3.1 19D52
    • iPhone 13 (mobile) • E390E86B-95D2-43D2-A8DE-098BC69D405E     • ios
      • com.apple.CoreSimulator.SimRuntime.iOS-15-4 (simulator)

[✓] HTTP Host Availability
    • All required HTTP hosts are available

• No issues found!

Metadata

Metadata

Assignees

Labels

P1High-priority issues at the top of the work listc: regressionIt was better in the past than it is nowf: scrollingViewports, list views, slivers, etc.found in release: 2.10Found to occur in 2.10found in release: 2.13Found to occur in 2.13has reproducible stepsThe issue has been confirmed reproducible and is ready to work onp: webviewThe WebView pluginpackageflutter/packages repository. See also p: labels.platform-androidAndroid applications specificallyr: fixedIssue is closed as already fixed in a newer version

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions