-
Notifications
You must be signed in to change notification settings - Fork 29.7k
Closed
Labels
P2Important issues not at the top of the work listImportant issues not at the top of the work lista: desktopRunning on desktopRunning on desktopcustomer: googleVarious Google teamsVarious Google teamsf: scrollingViewports, list views, slivers, etc.Viewports, list views, slivers, etc.platform-windowsBuilding on or for Windows specificallyBuilding on or for Windows specificallyr: fixedIssue is closed as already fixed in a newer versionIssue is closed as already fixed in a newer version
Description
Steps to Reproduce
- Execute
flutter runon the code sample - Click the "Show License Page" button
- Resize the window's width to be small enough to transition to the single pane view
- Click on one of the licenses
- Try to manually scroll the page by grabbing the scrollbar
Expected results:
No exceptions raised, page scrolls fine
Actual results:
Exception raised (this is a crash in our production build) and page doesn't scroll
Code sample
import 'package:flutter/material.dart';
void main() => runApp(const MyApp());
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) => MaterialApp(
title: 'Flutter Code Sample',
home: Scaffold(
body: Builder(
builder: (context) => TextButton(
child: const Text('Show License Page'),
onPressed: () {
showLicensePage(context: context);
},
),
),
),
);
}Logs
[ +22 ms] executing: [C:\Users\bourdakos\Documents\flutter/] git -c log.showSignature=false log -n 1 --pretty=format:%H
[ +111 ms] Exit code 0 from: git -c log.showSignature=false log -n 1 --pretty=format:%H
[ +1 ms] 15e694414c27ceb4f823672b41fbe81b5a2df651
[ ] executing: [C:\Users\bourdakos\Documents\flutter/] git tag --points-at 15e694414c27ceb4f823672b41fbe81b5a2df651
[ +165 ms] Exit code 0 from: git tag --points-at 15e694414c27ceb4f823672b41fbe81b5a2df651
[ +2 ms] executing: [C:\Users\bourdakos\Documents\flutter/] git describe --match *.*.* --long --tags 15e694414c27ceb4f823672b41fbe81b5a2df651
[ +182 ms] Exit code 0 from: git describe --match *.*.* --long --tags 15e694414c27ceb4f823672b41fbe81b5a2df651
[ +1 ms] 3.5.0-9.0.pre-135-g15e694414c
[ +20 ms] executing: [C:\Users\bourdakos\Documents\flutter/] git rev-parse --abbrev-ref --symbolic @{upstream}
[ +90 ms] Exit code 0 from: git rev-parse --abbrev-ref --symbolic @{upstream}
[ ] origin/master
[ ] executing: [C:\Users\bourdakos\Documents\flutter/] git ls-remote --get-url origin
[ +107 ms] Exit code 0 from: git ls-remote --get-url origin
[ ] https://github.com/flutter/flutter.git
[ +116 ms] executing: [C:\Users\bourdakos\Documents\flutter/] git rev-parse --abbrev-ref HEAD
[ +89 ms] Exit code 0 from: git rev-parse --abbrev-ref HEAD
[ ] master
[ +105 ms] Artifact Instance of 'AndroidGenSnapshotArtifacts' is not required, skipping update.
[ ] Artifact Instance of 'AndroidInternalBuildArtifacts' is not required, skipping update.
[ ] Artifact Instance of 'IOSEngineArtifacts' is not required, skipping update.
[ ] Artifact Instance of 'FlutterWebSdk' is not required, skipping update.
[ +7 ms] Artifact Instance of 'WindowsEngineArtifacts' is not required, skipping update.
[ ] Artifact Instance of 'MacOSEngineArtifacts' is not required, skipping update.
[ +1 ms] Artifact Instance of 'LinuxEngineArtifacts' is not required, skipping update.
[ +1 ms] Artifact Instance of 'LinuxFuchsiaSDKArtifacts' is not required, skipping update.
[ ] Artifact Instance of 'MacOSFuchsiaSDKArtifacts' is not required, skipping update.
[ ] Artifact Instance of 'FlutterRunnerSDKArtifacts' is not required, skipping update.
[ ] Artifact Instance of 'FlutterRunnerDebugSymbols' is not required, skipping update.
[ +479 ms] executing: C:\Users\bourdakos\platform-tools_r31.0.3-windows\platform-tools\adb.exe devices -l
[ +96 ms] List of devices attached
[ +7 ms] Artifact Instance of 'AndroidGenSnapshotArtifacts' is not required, skipping update.
[ ] Artifact Instance of 'AndroidInternalBuildArtifacts' is not required, skipping update.
[ ] Artifact Instance of 'IOSEngineArtifacts' is not required, skipping update.
[ +6 ms] Artifact Instance of 'MacOSEngineArtifacts' is not required, skipping update.
[ ] Artifact Instance of 'LinuxEngineArtifacts' is not required, skipping update.
[ ] Artifact Instance of 'LinuxFuchsiaSDKArtifacts' is not required, skipping update.
[ ] Artifact Instance of 'MacOSFuchsiaSDKArtifacts' is not required, skipping update.
[ ] Artifact Instance of 'FlutterRunnerSDKArtifacts' is not required, skipping update.
[ +1 ms] Artifact Instance of 'FlutterRunnerDebugSymbols' is not required, skipping update.
[ +76 ms] Multiple devices found:
[ +59 ms] Windows (desktop) • windows • windows-x64 • Microsoft Windows [Version 10.0.19042.2486]
[ +1 ms] Chrome (web) • chrome • web-javascript • Google Chrome 110.0.5481.77
[ ] Edge (web) • edge • web-javascript • Microsoft Edge 107.0.1418.42
[ +1 ms] [1]: Windows (windows)
[ ] [2]: Chrome (chrome)
[ ] [3]: Edge (edge)
[ +2 ms] Please choose one (To quit, press "q/Q")
[ ] :
[+7601 ms] 1
[ +25 ms] Skipping pub get: version match.
[ +195 ms] Generating C:\Users\bourdakos\Documents\bug_repro\android\app\src\main\java\io\flutter\plugins\GeneratedPluginRegistrant.java
[ +190 ms] Initializing file store
[ +16 ms] Skipping target: gen_localizations
[ +7 ms] gen_dart_plugin_registrant: Starting due to {InvalidatedReasonKind.inputChanged: The following inputs have updated contents:
C:\Users\bourdakos\Documents\bug_repro\.dart_tool\package_config_subset}
[ +35 ms] gen_dart_plugin_registrant: Complete
[ +2 ms] Skipping target: _composite
[ +4 ms] complete
[ +11 ms] Launching lib\main.dart on Windows in debug mode...
[ +9 ms] C:\Users\bourdakos\Documents\flutter\bin\cache\dart-sdk\bin\dart.exe --disable-dart-dev
C:\Users\bourdakos\Documents\flutter\bin\cache\dart-sdk\bin\snapshots\frontend_server.dart.snapshot --sdk-root
C:\Users\bourdakos\Documents\flutter\bin\cache\artifacts\engine\common\flutter_patched_sdk/ --incremental --target=flutter
--experimental-emit-debug-metadata -DFLUTTER_WEB_AUTO_DETECT=true --output-dill C:\src\temp\flutter_tools.463ed324\flutter_tool.560b2fae\app.dill --packagesC:\Users\bourdakos\Documents\bug_repro\.dart_tool\package_config.json -Ddart.vm.profile=false -Ddart.vm.product=false --enable-asserts
--track-widget-creation --filesystem-scheme org-dartlang-root --initialize-from-dill build\c075001b96339384a97db4862b8ab8db.cache.dill.track.dill
--verbosity=error --flutter-widget-cache --enable-experiment=alternative-invalidation-strategy
[ +63 ms] executing: C:\Program Files (x86)\Microsoft Visual Studio\Installer\vswhere.exe -format json -products * -utf8 -latest -version 16 -requires
Microsoft.VisualStudio.Workload.NativeDesktop Microsoft.VisualStudio.Component.VC.Tools.x86.x64 Microsoft.VisualStudio.Component.VC.CMake.Project
[ +102 ms] Exit code 0 from: C:\Program Files (x86)\Microsoft Visual Studio\Installer\vswhere.exe -format json -products * -utf8 -latest -version 16
-requires Microsoft.VisualStudio.Workload.NativeDesktop Microsoft.VisualStudio.Component.VC.Tools.x86.x64 Microsoft.VisualStudio.Component.VC.CMake.Project
[ +1 ms] [
{
"instanceId": "4228c84f",
"installDate": "2022-01-21T18:11:43Z",
"installationName": "VisualStudio/16.11.20+32929.386",
"installationPath": "C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Professional",
"installationVersion": "16.11.32929.386",
"productId": "Microsoft.VisualStudio.Product.Professional",
"productPath": "C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Professional\\Common7\\IDE\\devenv.exe",
"state": 4294967295,
"isComplete": true,
"isLaunchable": true,
"isPrerelease": false,
"isRebootRequired": false,
"displayName": "Visual Studio Professional 2019",
"description": "Professional IDE best suited to small teams",
"channelId": "VisualStudio.16.Release",
"channelUri": "https://aka.ms/vs/16/release/channel",
"enginePath": "C:\\Program Files (x86)\\Microsoft Visual
Studio\\Installer\\resources\\app\\ServiceHub\\Services\\Microsoft.VisualStudio.Setup.Service",
"releaseNotes": "https://docs.microsoft.com/en-us/visualstudio/releases/2019/release-notes-v16.11#16.11.20",
"thirdPartyNotices": "https://go.microsoft.com/fwlink/?LinkId=660909",
"updateDate": "2022-10-31T22:35:36.7450936Z",
"catalog": {
"buildBranch": "d16.11",
"buildVersion": "16.11.32929.386",
"id": "VisualStudio/16.11.20+32929.386",
"localBuild": "build-lab",
"manifestName": "VisualStudio",
"manifestType": "installer",
"productDisplayVersion": "16.11.20",
"productLine": "Dev16",
"productLineVersion": "2019",
"productMilestone": "RTW",
"productMilestoneIsPreRelease": "False",
"productName": "Visual Studio",
"productPatchVersion": "20",
"productPreReleaseMilestoneSuffix": "1.0",
"productSemanticVersion": "16.11.20+32929.386",
"requiredEngineVersion": "2.11.69.53063"
},
"properties": {
"campaignId": "",
"channelManifestId": "VisualStudio.16.Release/16.11.20+32929.386",
"nickname": "",
"setupEngineFilePath": "C:\\Program Files (x86)\\Microsoft Visual Studio\\Installer\\setup.exe"
}
}
]
[ +9 ms] Building Windows application...
[ +41 ms] <- compile package:bug_repro/main.dart
[ +4 ms] executing: C:\Program Files (x86)\Microsoft Visual Studio\2019\Professional\Common7\IDE\CommonExtensions\Microsoft\CMake\CMake\bin\cmake.exe -S
C:\Users\bourdakos\Documents\bug_repro\windows -B build\windows -G Visual Studio 16 2019
[ +198 ms] -- Selecting Windows SDK version 10.0.19041.0 to target Windows 10.0.19042.
[ +228 ms] -- Configuring done
[ +711 ms] -- Generating done
[ +67 ms] -- Build files have been written to: C:/Users/bourdakos/Documents/bug_repro/build/windows
[ +7 ms] executing: C:\Program Files (x86)\Microsoft Visual Studio\2019\Professional\Common7\IDE\CommonExtensions\Microsoft\CMake\CMake\bin\cmake.exe
--build build\windows --config Debug --target INSTALL --verbose
[ +478 ms] Microsoft (R) Build Engine version 16.11.2+f32259642 for .NET Framework
[ ] Copyright (C) Microsoft Corporation. All rights reserved.
[ +337 ms] Build started 2/14/2023 2:11:28 PM.
[ +789 ms] Project "C:\Users\bourdakos\Documents\bug_repro\build\windows\INSTALL.vcxproj" on node 1 (default targets).
[ +1 ms] Project "C:\Users\bourdakos\Documents\bug_repro\build\windows\INSTALL.vcxproj" (1) is building
"C:\Users\bourdakos\Documents\bug_repro\build\windows\ZERO_CHECK.vcxproj" (2) on node 1 (default targets).
[ ] InitializeBuildStatus:
[ ] Creating "x64\Debug\ZERO_CHECK\ZERO_CHECK.tlog\unsuccessfulbuild" because "AlwaysCreate" was specified.
[ +53 ms] CustomBuild:
[ ] All outputs are up-to-date.
[ +59 ms] FinalizeBuildStatus:
[ ] Deleting file "x64\Debug\ZERO_CHECK\ZERO_CHECK.tlog\unsuccessfulbuild".
[ ] Touching "x64\Debug\ZERO_CHECK\ZERO_CHECK.tlog\ZERO_CHECK.lastbuildstate".
[ +3 ms] Done Building Project "C:\Users\bourdakos\Documents\bug_repro\build\windows\ZERO_CHECK.vcxproj" (default targets).
[ +127 ms] Project "C:\Users\bourdakos\Documents\bug_repro\build\windows\INSTALL.vcxproj" (1) is building
"C:\Users\bourdakos\Documents\bug_repro\build\windows\ALL_BUILD.vcxproj" (3) on node 1 (default targets).
[ +1 ms] Project "C:\Users\bourdakos\Documents\bug_repro\build\windows\ALL_BUILD.vcxproj" (3) is building
"C:\Users\bourdakos\Documents\bug_repro\build\windows\runner\bug_repro.vcxproj" (4) on node 1 (default targets).
[ +1 ms] Project "C:\Users\bourdakos\Documents\bug_repro\build\windows\runner\bug_repro.vcxproj" (4) is building
"C:\Users\bourdakos\Documents\bug_repro\build\windows\flutter\flutter_assemble.vcxproj" (5) on node 1 (default targets).
[ +1 ms] InitializeBuildStatus:
[ ] Creating "x64\Debug\flutter_assemble\flutter_assemble.tlog\unsuccessfulbuild" because "AlwaysCreate" was specified.
[ +6 ms] CustomBuild:
[ ] "The build of 'C:\Users\bourdakos\Documents\bug_repro\build\windows\CMakeFiles\9c4fc6f798b73840992bb3ce2f7afe41\flutter_assemble.rule' depends
on 'C:\USERS\BOURDAKOS\DOCUMENTS\BUG_REPRO\WINDOWS\FLUTTER\EPHEMERAL\FLUTTER_WINDOWS.DLL' which is produced by the build of
'C:\Users\bourdakos\Documents\bug_repro\build\windows\CMakeFiles\c21b719c1bb1867fca19a7ea97cd8309\flutter_windows.dll.rule'. The items cannot be built in
parallel."
[ +143 ms] Generating C:/Users/bourdakos/Documents/bug_repro/windows/flutter/ephemeral/flutter_windows.dll,
C:/Users/bourdakos/Documents/bug_repro/windows/flutter/ephemeral/flutter_export.h,
C:/Users/bourdakos/Documents/bug_repro/windows/flutter/ephemeral/flutter_windows.h,
C:/Users/bourdakos/Documents/bug_repro/windows/flutter/ephemeral/flutter_messenger.h,
C:/Users/bourdakos/Documents/bug_repro/windows/flutter/ephemeral/flutter_plugin_registrar.h,
C:/Users/bourdakos/Documents/bug_repro/windows/flutter/ephemeral/flutter_texture_registrar.h,
C:/Users/bourdakos/Documents/bug_repro/windows/flutter/ephemeral/cpp_client_wrapper/core_implementations.cc,
C:/Users/bourdakos/Documents/bug_repro/windows/flutter/ephemeral/cpp_client_wrapper/standard_codec.cc,
C:/Users/bourdakos/Documents/bug_repro/windows/flutter/ephemeral/cpp_client_wrapper/plugin_registrar.cc,
C:/Users/bourdakos/Documents/bug_repro/windows/flutter/ephemeral/cpp_client_wrapper/flutter_engine.cc,
C:/Users/bourdakos/Documents/bug_repro/windows/flutter/ephemeral/cpp_client_wrapper/flutter_view_controller.cc, _phony_
[ +621 ms] [ +5 ms] executing: [C:\Users\bourdakos\Documents\flutter/] git -c log.showSignature=false log -n 1 --pretty=format:%H
[ +126 ms] [ +147 ms] Exit code 0 from: git -c log.showSignature=false log -n 1 --pretty=format:%H
[ +1 ms] [ ] 15e694414c27ceb4f823672b41fbe81b5a2df651
[ ] [ ] executing: [C:\Users\bourdakos\Documents\flutter/] git tag --points-at 15e694414c27ceb4f823672b41fbe81b5a2df651
[ +154 ms] [ +156 ms] Exit code 0 from: git tag --points-at 15e694414c27ceb4f823672b41fbe81b5a2df651
[ +1 ms] [ +1 ms] executing: [C:\Users\bourdakos\Documents\flutter/] git describe --match *.*.* --long --tags 15e694414c27ceb4f823672b41fbe81b5a2df651[ +191 ms] [ +191 ms] Exit code 0 from: git describe --match *.*.* --long --tags 15e694414c27ceb4f823672b41fbe81b5a2df651
[ ] [ ] 3.5.0-9.0.pre-135-g15e694414c
[ +20 ms] [ +20 ms] executing: [C:\Users\bourdakos\Documents\flutter/] git rev-parse --abbrev-ref HEAD
[ +102 ms] [ +103 ms] Exit code 0 from: git rev-parse --abbrev-ref HEAD
[ ] [ ] master
[ +77 ms] [ +77 ms] Artifact Instance of 'AndroidGenSnapshotArtifacts' is not required, skipping update.
[ ] [ ] Artifact Instance of 'AndroidInternalBuildArtifacts' is not required, skipping update.
[ ] [ ] Artifact Instance of 'IOSEngineArtifacts' is not required, skipping update.
[ ] [ ] Artifact Instance of 'FlutterWebSdk' is not required, skipping update.
[ +2 ms] [ +3 ms] Artifact Instance of 'WindowsEngineArtifacts' is not required, skipping update.
[ +1 ms] [ ] Artifact Instance of 'MacOSEngineArtifacts' is not required, skipping update.
[ +1 ms] [ ] Artifact Instance of 'LinuxEngineArtifacts' is not required, skipping update.
[ +1 ms] [ ] Artifact Instance of 'LinuxFuchsiaSDKArtifacts' is not required, skipping update.
[ +1 ms] [ ] Artifact Instance of 'MacOSFuchsiaSDKArtifacts' is not required, skipping update.
[ ] [ ] Artifact Instance of 'FlutterRunnerSDKArtifacts' is not required, skipping update.
[ ] [ ] Artifact Instance of 'FlutterRunnerDebugSymbols' is not required, skipping update.
[ +99 ms] [ +105 ms] executing: [C:\Users\bourdakos\Documents\flutter/] git rev-parse --abbrev-ref --symbolic @{upstream}
[ +97 ms] [ +97 ms] Exit code 0 from: git rev-parse --abbrev-ref --symbolic @{upstream}
[ ] [ ] origin/master
[ ] [ ] executing: [C:\Users\bourdakos\Documents\flutter/] git ls-remote --get-url origin
[ +105 ms] [ +106 ms] Exit code 0 from: git ls-remote --get-url origin
[ ] [ ] https://github.com/flutter/flutter.git
[ ] [ ] Artifact Instance of 'MaterialFonts' is not required, skipping update.
[ ] [ ] Artifact Instance of 'GradleWrapper' is not required, skipping update.
[ ] [ ] Artifact Instance of 'AndroidGenSnapshotArtifacts' is not required, skipping update.
[ ] [ ] Artifact Instance of 'AndroidInternalBuildArtifacts' is not required, skipping update.
[ ] [ ] Artifact Instance of 'IOSEngineArtifacts' is not required, skipping update.
[ ] [ ] Artifact Instance of 'FlutterWebSdk' is not required, skipping update.
[ ] [ ] Artifact Instance of 'FlutterSdk' is not required, skipping update.
[ +1 ms] [ +2 ms] Artifact Instance of 'MacOSEngineArtifacts' is not required, skipping update.
[ ] [ ] Artifact Instance of 'LinuxEngineArtifacts' is not required, skipping update.
[ ] [ ] Artifact Instance of 'LinuxFuchsiaSDKArtifacts' is not required, skipping update.
[ ] [ ] Artifact Instance of 'MacOSFuchsiaSDKArtifacts' is not required, skipping update.
[ ] [ ] Artifact Instance of 'FlutterRunnerSDKArtifacts' is not required, skipping update.
[ ] [ ] Artifact Instance of 'FlutterRunnerDebugSymbols' is not required, skipping update.
[ ] [ ] Artifact Instance of 'IosUsbArtifacts' is not required, skipping update.
[ ] [ ] Artifact Instance of 'IosUsbArtifacts' is not required, skipping update.
[ ] [ ] Artifact Instance of 'IosUsbArtifacts' is not required, skipping update.
[ ] [ ] Artifact Instance of 'IosUsbArtifacts' is not required, skipping update.
[ ] [ ] Artifact Instance of 'IosUsbArtifacts' is not required, skipping update.
[ ] [ ] Artifact Instance of 'FontSubsetArtifacts' is not required, skipping update.
[ ] [ ] Artifact Instance of 'PubDependencies' is not required, skipping update.
[ +368 ms] [ +372 ms] Initializing file store
[ +21 ms] [ +21 ms] Done initializing file store
[ +114 ms] [ +114 ms] Skipping target: gen_localizations
[ +22 ms] [ +22 ms] Skipping target: gen_dart_plugin_registrant
[+3325 ms] [+3325 ms] Skipping target: unpack_windows
[ +408 ms] [ +408 ms] kernel_snapshot: Starting due to {InvalidatedReasonKind.inputChanged: The following inputs have updated contents:
C:\Users\bourdakos\Documents\bug_repro\lib\main.dart}
[ +12 ms] [ +11 ms] C:\Users\bourdakos\Documents\flutter\bin\cache\dart-sdk\bin\dart.exe --disable-dart-dev
C:\Users\bourdakos\Documents\flutter\bin\cache\dart-sdk\bin\snapshots\frontend_server.dart.snapshot --sdk-root
C:\Users\bourdakos\Documents\flutter\bin\cache\artifacts\engine\common\flutter_patched_sdk/ --target=flutter --no-print-incremental-dependencies
-DFLUTTER_WEB_AUTO_DETECT=true -Ddart.vm.profile=false -Ddart.vm.product=false --enable-asserts --track-widget-creation --packages
C:\Users\bourdakos\Documents\bug_repro\.dart_tool\package_config.json --output-dill
C:\Users\bourdakos\Documents\bug_repro\.dart_tool\flutter_build\95a67b1c9cf9f85f583c085907ac6199\app.dill --depfile
C:\Users\bourdakos\Documents\bug_repro\.dart_tool\flutter_build\95a67b1c9cf9f85f583c085907ac6199\kernel_snapshot.d --incremental --initialize-from-dill
C:\Users\bourdakos\Documents\bug_repro\.dart_tool\flutter_build\95a67b1c9cf9f85f583c085907ac6199\app.dill --verbosity=error package:bug_repro/main.dart
[+1199 ms] [+1200 ms] kernel_snapshot: Complete
[ +421 ms] [ +421 ms] debug_bundle_windows_assets: Starting due to {InvalidatedReasonKind.inputChanged: The following inputs have updated contents:
C:\Users\bourdakos\Documents\bug_repro\.dart_tool\flutter_build\95a67b1c9cf9f85f583c085907ac6199\app.dill}
[ +320 ms] [ +320 ms] debug_bundle_windows_assets: Complete
[ +255 ms] [ +256 ms] Persisting file store
[ +12 ms] [ +11 ms] Done persisting file store
[ +10 ms] [ +10 ms] build succeeded.
[ +13 ms] [ +13 ms] "flutter assemble" took 6,999ms.
[ +64 ms] [ +65 ms] ensureAnalyticsSent: 58ms
[ +1 ms] [ ] Running 0 shutdown hooks
[ ] [ ] Shutdown hooks complete
[ ] [ ] exiting with code 0
[ +118 ms] FinalizeBuildStatus:
[ ] Deleting file "x64\Debug\flutter_assemble\flutter_assemble.tlog\unsuccessfulbuild".
[ ] Touching "x64\Debug\flutter_assemble\flutter_assemble.tlog\flutter_assemble.lastbuildstate".
[ ] Done Building Project "C:\Users\bourdakos\Documents\bug_repro\build\windows\flutter\flutter_assemble.vcxproj" (default targets).
[ +55 ms] Project "C:\Users\bourdakos\Documents\bug_repro\build\windows\runner\bug_repro.vcxproj" (4) is building
"C:\Users\bourdakos\Documents\bug_repro\build\windows\flutter\flutter_wrapper_app.vcxproj" (6) on node 1 (default targets).
[ ] InitializeBuildStatus:
[ ] Creating "flutter_wrapper_app.dir\Debug\flutter_.745470B3.tlog\unsuccessfulbuild" because "AlwaysCreate" was specified.
[ +2 ms] CustomBuild:
[ ] All outputs are up-to-date.
[ +52 ms] ClCompile:
[ +1 ms] All outputs are up-to-date.
[ +38 ms] Lib:
[ ] All outputs are up-to-date.
[ +1 ms] flutter_wrapper_app.vcxproj -> C:\Users\bourdakos\Documents\bug_repro\build\windows\flutter\Debug\flutter_wrapper_app.lib
[ +18 ms] FinalizeBuildStatus:
[ ] Deleting file "flutter_wrapper_app.dir\Debug\flutter_.745470B3.tlog\unsuccessfulbuild".
[ ] Touching "flutter_wrapper_app.dir\Debug\flutter_.745470B3.tlog\flutter_wrapper_app.lastbuildstate".
[ ] Done Building Project "C:\Users\bourdakos\Documents\bug_repro\build\windows\flutter\flutter_wrapper_app.vcxproj" (default targets).
[ +10 ms] InitializeBuildStatus:
[ +1 ms] Creating "bug_repro.dir\Debug\bug_repro.tlog\unsuccessfulbuild" because "AlwaysCreate" was specified.
[ +2 ms] CustomBuild:
[ +1 ms] All outputs are up-to-date.
[ +37 ms] ClCompile:
[ +1 ms] C:\Program Files (x86)\Microsoft Visual Studio\2019\Professional\VC\Tools\MSVC\14.29.30133\bin\HostX64\x64\CL.exe /c
/IC:\Users\bourdakos\Documents\bug_repro\windows /IC:\Users\bourdakos\Documents\bug_repro\windows\flutter\ephemeral
/IC:\Users\bourdakos\Documents\bug_repro\windows\flutter\ephemeral\cpp_client_wrapper\include /Zi /nologo /W4 /WX /diagnostics:column /Od /Ob0 /D WIN32 /D
_WINDOWS /D _HAS_EXCEPTIONS=0 /D _DEBUG /D "FLUTTER_VERSION=\"1.0.0+1\"" /D FLUTTER_VERSION_MAJOR=1 /D FLUTTER_VERSION_MINOR=0 /D FLUTTER_VERSION_PATCH=0 /DFLUTTER_VERSION_BUILD=1 /D NOMINMAX /D UNICODE /D _UNICODE /D "CMAKE_INTDIR=\"Debug\"" /D _UNICODE /D UNICODE /Gm- /EHsc /RTC1 /MDd /GS /fp:precise
/Zc:wchar_t /Zc:forScope /Zc:inline /GR /std:c++17 /Fo"bug_repro.dir\Debug\\" /Fd"bug_repro.dir\Debug\vc142.pdb" /external:W4 /Gd /TP /wd4100
/errorReport:queue C:\Users\bourdakos\Documents\bug_repro\windows\flutter\generated_plugin_registrant.cc
C:\Users\bourdakos\Documents\bug_repro\windows\runner\flutter_window.cpp
[ +144 ms] generated_plugin_registrant.cc
[ +670 ms] flutter_window.cpp
[ +639 ms] Generating Code...
[ +95 ms] ResourceCompile:
[ ] All outputs are up-to-date.
[ +32 ms] Link:
[ ] C:\Program Files (x86)\Microsoft Visual Studio\2019\Professional\VC\Tools\MSVC\14.29.30133\bin\HostX64\x64\link.exe /ERRORREPORT:QUEUE
/OUT:"C:\Users\bourdakos\Documents\bug_repro\build\windows\runner\Debug\bug_repro.exe" /INCREMENTAL /ILK:"bug_repro.dir\Debug\bug_repro.ilk" /NOLOGO
..\flutter\Debug\flutter_wrapper_app.lib dwmapi.lib C:\Users\bourdakos\Documents\bug_repro\windows\flutter\ephemeral\flutter_windows.dll.lib kernel32.lib
user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib /MANIFEST /MANIFESTUAC:"level='asInvoker'
uiAccess='false'" /manifest:embed /manifestinput:C:\Users\bourdakos\Documents\bug_repro\windows\runner\runner.exe.manifest /DEBUG
/PDB:"C:/Users/bourdakos/Documents/bug_repro/build/windows/runner/Debug/bug_repro.pdb" /SUBSYSTEM:WINDOWS /TLBID:1 /DYNAMICBASE /NXCOMPAT
/IMPLIB:"C:/Users/bourdakos/Documents/bug_repro/build/windows/runner/Debug/bug_repro.lib" /MACHINE:X64 /machine:x64 bug_repro.dir\Debug\Runner.res
[ +2 ms] bug_repro.dir\Debug\flutter_window.obj
[ ] bug_repro.dir\Debug\main.obj
[ ] bug_repro.dir\Debug\utils.obj
[ ] bug_repro.dir\Debug\win32_window.obj
[ ] bug_repro.dir\Debug\generated_plugin_registrant.obj
[ +297 ms] bug_repro.vcxproj -> C:\Users\bourdakos\Documents\bug_repro\build\windows\runner\Debug\bug_repro.exe
[ +8 ms] FinalizeBuildStatus:
[ +1 ms] Deleting file "bug_repro.dir\Debug\bug_repro.tlog\unsuccessfulbuild".
[ +1 ms] Touching "bug_repro.dir\Debug\bug_repro.tlog\bug_repro.lastbuildstate".
[ ] Done Building Project "C:\Users\bourdakos\Documents\bug_repro\build\windows\runner\bug_repro.vcxproj" (default targets).
[ +55 ms] Project "C:\Users\bourdakos\Documents\bug_repro\build\windows\ALL_BUILD.vcxproj" (3) is building
"C:\Users\bourdakos\Documents\bug_repro\build\windows\flutter\flutter_wrapper_plugin.vcxproj" (7) on node 1 (default targets).
[ +1 ms] InitializeBuildStatus:
[ ] Creating "flutter_wrapper_plugin.dir\Debug\flutter_.4306E078.tlog\unsuccessfulbuild" because "AlwaysCreate" was specified.
[ +1 ms] CustomBuild:
[ ] All outputs are up-to-date.
[ +13 ms] ClCompile:
[ +1 ms] All outputs are up-to-date.
[ +5 ms] Lib:
[ +1 ms] All outputs are up-to-date.
[ +1 ms] flutter_wrapper_plugin.vcxproj -> C:\Users\bourdakos\Documents\bug_repro\build\windows\flutter\Debug\flutter_wrapper_plugin.lib
[ +7 ms] FinalizeBuildStatus:
[ ] Deleting file "flutter_wrapper_plugin.dir\Debug\flutter_.4306E078.tlog\unsuccessfulbuild".
[ ] Touching "flutter_wrapper_plugin.dir\Debug\flutter_.4306E078.tlog\flutter_wrapper_plugin.lastbuildstate".
[ ] Done Building Project "C:\Users\bourdakos\Documents\bug_repro\build\windows\flutter\flutter_wrapper_plugin.vcxproj" (default targets).
[ +14 ms] InitializeBuildStatus:
[ +1 ms] Creating "x64\Debug\ALL_BUILD\ALL_BUILD.tlog\unsuccessfulbuild" because "AlwaysCreate" was specified.
[ +5 ms] CustomBuild:
[ ] All outputs are up-to-date.
[ +12 ms] FinalizeBuildStatus:
[ ] Deleting file "x64\Debug\ALL_BUILD\ALL_BUILD.tlog\unsuccessfulbuild".
[ ] Touching "x64\Debug\ALL_BUILD\ALL_BUILD.tlog\ALL_BUILD.lastbuildstate".
[ ] Done Building Project "C:\Users\bourdakos\Documents\bug_repro\build\windows\ALL_BUILD.vcxproj" (default targets).
[ +15 ms] InitializeBuildStatus:
[ ] Creating "x64\Debug\INSTALL\INSTALL.tlog\unsuccessfulbuild" because "AlwaysCreate" was specified.
[ +113 ms] PostBuildEvent:
[ +1 ms] setlocal
[ ] "C:\Program Files (x86)\Microsoft Visual Studio\2019\Professional\Common7\IDE\CommonExtensions\Microsoft\CMake\CMake\bin\cmake.exe"
-DBUILD_TYPE=Debug -P cmake_install.cmake
[ ] if %errorlevel% neq 0 goto :cmEnd
[ ] :cmEnd
[ ] endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
[ ] :cmErrorLevel
[ ] exit /b %1
[ ] :cmDone
[ ] if %errorlevel% neq 0 goto :VCEnd
[ ] :VCEnd
[ +134 ms] -- Install configuration: "Debug"
[ +43 ms] -- Up-to-date: C:/Users/bourdakos/Documents/bug_repro/build/windows/runner/Debug/data/icudtl.dat
[ +1 ms] -- Up-to-date: C:/Users/bourdakos/Documents/bug_repro/build/windows/runner/Debug/flutter_windows.dll
[ +12 ms] -- Installing: C:/Users/bourdakos/Documents/bug_repro/build/windows/runner/Debug/data/flutter_assets
[ +1 ms] -- Installing: C:/Users/bourdakos/Documents/bug_repro/build/windows/runner/Debug/data/flutter_assets/AssetManifest.json
[ +3 ms] -- Installing: C:/Users/bourdakos/Documents/bug_repro/build/windows/runner/Debug/data/flutter_assets/FontManifest.json
[ +3 ms] -- Installing: C:/Users/bourdakos/Documents/bug_repro/build/windows/runner/Debug/data/flutter_assets/fonts
[ +8 ms] -- Installing: C:/Users/bourdakos/Documents/bug_repro/build/windows/runner/Debug/data/flutter_assets/fonts/MaterialIcons-Regular.otf
[ +15 ms] -- Installing: C:/Users/bourdakos/Documents/bug_repro/build/windows/runner/Debug/data/flutter_assets/kernel_blob.bin
[ +199 ms] -- Installing: C:/Users/bourdakos/Documents/bug_repro/build/windows/runner/Debug/data/flutter_assets/NOTICES
[ +5 ms] -- Installing: C:/Users/bourdakos/Documents/bug_repro/build/windows/runner/Debug/data/flutter_assets/NOTICES.Z
[ +3 ms] -- Installing: C:/Users/bourdakos/Documents/bug_repro/build/windows/runner/Debug/data/flutter_assets/packages
[ +1 ms] -- Installing: C:/Users/bourdakos/Documents/bug_repro/build/windows/runner/Debug/data/flutter_assets/packages/cupertino_icons
[ +1 ms] -- Installing: C:/Users/bourdakos/Documents/bug_repro/build/windows/runner/Debug/data/flutter_assets/packages/cupertino_icons/assets
[ +1 ms] -- Installing:
C:/Users/bourdakos/Documents/bug_repro/build/windows/runner/Debug/data/flutter_assets/packages/cupertino_icons/assets/CupertinoIcons.ttf
[ +5 ms] -- Installing: C:/Users/bourdakos/Documents/bug_repro/build/windows/runner/Debug/data/flutter_assets/shaders
[ +1 ms] -- Installing: C:/Users/bourdakos/Documents/bug_repro/build/windows/runner/Debug/data/flutter_assets/shaders/ink_sparkle.frag
[ +20 ms] FinalizeBuildStatus:
[ ] Deleting file "x64\Debug\INSTALL\INSTALL.tlog\unsuccessfulbuild".
[ ] Touching "x64\Debug\INSTALL\INSTALL.tlog\INSTALL.lastbuildstate".
[ ] Done Building Project "C:\Users\bourdakos\Documents\bug_repro\build\windows\INSTALL.vcxproj" (default targets).
[ +18 ms] Build succeeded.
[ +1 ms] 0 Warning(s)
[ ] 0 Error(s)
[ ] Time Elapsed 00:00:12.39
[ +37 ms] Building Windows application... (completed in 14.5s)
[ +370 ms] [ERROR:flutter/shell/platform/windows/direct_manipulation.cc(160)] CoCreateInstance(CLSID_DirectManipulationManager, nullptr,
CLSCTX_INPROC_SERVER, IID_IDirectManipulationManager, &manager_) failed
[ +87 ms] Observatory URL on device: http://127.0.0.1:50834/Zc57uCGGsNo=/
[ +3 ms] Caching compiled dill
[ +47 ms] Connecting to service protocol: http://127.0.0.1:50834/Zc57uCGGsNo=/
[ +114 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:50834/Zc57uCGGsNo=/.
[ +73 ms] DDS is listening at http://127.0.0.1:50840/RJ_8nQ9lnQc=/.
[ +61 ms] Successfully connected to service protocol: http://127.0.0.1:50834/Zc57uCGGsNo=/
[ +25 ms] DevFS: Creating new filesystem on the device (null)
[ +20 ms] DevFS: Created new filesystem on the device (file:///C:/src/temp/bug_reprob13b18f2/bug_repro/)
[ +3 ms] Updating assets
[ +97 ms] Syncing files to device Windows...
[ +3 ms] Compiling dart to kernel with 0 updated files
[ ] Processing bundle.
[ +1 ms] <- recompile package:bug_repro/main.dart 9ef82e91-a55c-4b08-b06b-0e8563612f5b
[ ] <- 9ef82e91-a55c-4b08-b06b-0e8563612f5b
[ +2 ms] Bundle processing done.
[ +87 ms] Updating files.
[ ] DevFS: Sync finished
[ +1 ms] Syncing files to device Windows... (completed in 96ms)
[ ] Synced 0.0MB.
[ +1 ms] <- accept
[ +23 ms] Connected to _flutterView/0x293a65d7a00.
[ +3 ms] Flutter run key commands.
[ +1 ms] r Hot reload.
[ ] R Hot restart.
[ ] h List all available interactive commands.
[ +1 ms] 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 Windows is available at: http://127.0.0.1:50840/RJ_8nQ9lnQc=/
[ +59 ms] The Flutter DevTools debugger and profiler on Windows is available at: http://127.0.0.1:9101?uri=http://127.0.0.1:50840/RJ_8nQ9lnQc=/
[+11032 ms]
══╡ EXCEPTION CAUGHT BY ANIMATION LIBRARY ╞═════════════════════════════════════════════════════════
The following assertion was thrown while notifying status listeners for AnimationController:
The Scrollbar's ScrollController has no ScrollPosition attached.
A Scrollbar cannot be painted without a ScrollPosition.
The Scrollbar attempted to use the PrimaryScrollController. This ScrollController should be
associated with the ScrollView that the Scrollbar is being applied to.A ScrollView with an
Axis.vertical ScrollDirection on mobile platforms will automatically use the PrimaryScrollController
if the user has not provided a ScrollController. To use the PrimaryScrollController explicitly, set
ScrollView.primary to true for the Scrollable widget.
When the exception was thrown, this was the stack:
#0 RawScrollbarState._debugCheckHasValidScrollPosition.<anonymous closure> (package:flutter/src/widgets/scrollbar.dart:1594:9)
#1 RawScrollbarState._debugCheckHasValidScrollPosition (package:flutter/src/widgets/scrollbar.dart:1619:6)
#2 RawScrollbarState._validateInteractions (package:flutter/src/widgets/scrollbar.dart:1561:14)
#3 AnimationLocalStatusListenersMixin.notifyStatusListeners (package:flutter/src/animation/listener_helpers.dart:240:19)
#4 AnimationController._checkStatusChanged (package:flutter/src/animation/animation_controller.dart:822:7)
#5 AnimationController._startSimulation (package:flutter/src/animation/animation_controller.dart:756:5)
#6 AnimationController._animateToInternal (package:flutter/src/animation/animation_controller.dart:619:12)
#7 AnimationController.forward (package:flutter/src/animation/animation_controller.dart:467:12)
#8 RawScrollbarState.handleHover (package:flutter/src/widgets/scrollbar.dart:2070:35)
#9 _MaterialScrollbarState.handleHover (package:flutter/src/material/scrollbar.dart:449:11)
#10 RawScrollbarState.build.<anonymous closure> (package:flutter/src/widgets/scrollbar.dart:2129:23)
#11 RenderMouseRegion.handleEvent (package:flutter/src/rendering/proxy_box.dart:3266:22)
#12 GestureBinding.dispatchEvent (package:flutter/src/gestures/binding.dart:440:22)
#13 RendererBinding.dispatchEvent (package:flutter/src/rendering/binding.dart:336:11)
#14 GestureBinding._handlePointerEventImmediately (package:flutter/src/gestures/binding.dart:395:7)
#15 GestureBinding.handlePointerEvent (package:flutter/src/gestures/binding.dart:357:5)
#16 GestureBinding._flushPointerEventQueue (package:flutter/src/gestures/binding.dart:314:7)
#17 GestureBinding._handlePointerDataPacket (package:flutter/src/gestures/binding.dart:295:7)
#18 _invoke1 (dart:ui/hooks.dart:164:13)
#19 PlatformDispatcher._dispatchPointerDataPacket (dart:ui/platform_dispatcher.dart:361:7)
#20 _dispatchPointerDataPacket (dart:ui/hooks.dart:91:31)
The AnimationController notifying status listeners was:
AnimationController#de286(▶ 0.000)
════════════════════════════════════════════════════════════════════════════════════════════════════
[ +272 ms]
Another exception was thrown: The Scrollbar's ScrollController has no ScrollPosition attached.
[+2383 ms]
Another exception was thrown: The Scrollbar's ScrollController has no ScrollPosition attached.
[ +4 ms]
Another exception was thrown: The Scrollbar's ScrollController has no ScrollPosition attached.
[ +197 ms]
Another exception was thrown: The Scrollbar's ScrollController has no ScrollPosition attached.
[ +4 ms]
Another exception was thrown: The Scrollbar's ScrollController has no ScrollPosition attached.
[ +4 ms]
Another exception was thrown: The Scrollbar's ScrollController has no ScrollPosition attached.
[ +9 ms]
Another exception was thrown: The Scrollbar's ScrollController has no ScrollPosition attached.
[ +7 ms]
Another exception was thrown: The Scrollbar's ScrollController has no ScrollPosition attached.
[ +7 ms]
Another exception was thrown: The Scrollbar's ScrollController has no ScrollPosition attached.
[ +6 ms]
Another exception was thrown: The Scrollbar's ScrollController has no ScrollPosition attached.
[ +3 ms]
Another exception was thrown: The Scrollbar's ScrollController has no ScrollPosition attached.
[ +10 ms]
Another exception was thrown: The Scrollbar's ScrollController has no ScrollPosition attached.
[ +3 ms]
Another exception was thrown: The Scrollbar's ScrollController has no ScrollPosition attached.
[ +7 ms]
Another exception was thrown: The Scrollbar's ScrollController has no ScrollPosition attached.
[ +7 ms]
Another exception was thrown: The Scrollbar's ScrollController has no ScrollPosition attached.
[ +4 ms]
Another exception was thrown: The Scrollbar's ScrollController has no ScrollPosition attached.
[ +11 ms]
Another exception was thrown: The Scrollbar's ScrollController has no ScrollPosition attached.
[ +2 ms]
Another exception was thrown: The Scrollbar's ScrollController has no ScrollPosition attached.
[ +13 ms]
Another exception was thrown: The Scrollbar's ScrollController has no ScrollPosition attached.
[ +4 ms]
Another exception was thrown: The Scrollbar's ScrollController has no ScrollPosition attached.
[ +7 ms]
Another exception was thrown: The Scrollbar's ScrollController has no ScrollPosition attached.
[ +5 ms]
Another exception was thrown: The Scrollbar's ScrollController has no ScrollPosition attached.
[ +4 ms]
Another exception was thrown: The Scrollbar's ScrollController has no ScrollPosition attached.
[ +7 ms]
Another exception was thrown: The Scrollbar's ScrollController has no ScrollPosition attached.
[ +6 ms]
Another exception was thrown: The Scrollbar's ScrollController has no ScrollPosition attached.
[ +5 ms]
Another exception was thrown: The Scrollbar's ScrollController has no ScrollPosition attached.
[ +7 ms]
Another exception was thrown: The Scrollbar's ScrollController has no ScrollPosition attached.
[ +4 ms]
Another exception was thrown: The Scrollbar's ScrollController has no ScrollPosition attached.
[ +10 ms]
Another exception was thrown: The Scrollbar's ScrollController has no ScrollPosition attached.
[ +4 ms]
Another exception was thrown: The Scrollbar's ScrollController has no ScrollPosition attached.
[ +10 ms]
Another exception was thrown: The Scrollbar's ScrollController has no ScrollPosition attached.
[ +6 ms]
Another exception was thrown: The Scrollbar's ScrollController has no ScrollPosition attached.
[ +4 ms]
Another exception was thrown: The Scrollbar's ScrollController has no ScrollPosition attached.
[ +13 ms]
Another exception was thrown: The Scrollbar's ScrollController has no ScrollPosition attached.
[ +8 ms]
Another exception was thrown: The Scrollbar's ScrollController has no ScrollPosition attached.
[ +7 ms]
Another exception was thrown: The Scrollbar's ScrollController has no ScrollPosition attached.
[ +14 ms]
Another exception was thrown: The Scrollbar's ScrollController has no ScrollPosition attached.
[ +13 ms]
Another exception was thrown: The Scrollbar's ScrollController has no ScrollPosition attached.
[ +10 ms]
Another exception was thrown: The Scrollbar's ScrollController has no ScrollPosition attached.
[ +54 ms]
Another exception was thrown: The Scrollbar's ScrollController has no ScrollPosition attached.
[ +7 ms]
Another exception was thrown: The Scrollbar's ScrollController has no ScrollPosition attached.
[ +350 ms]
Another exception was thrown: The Scrollbar's ScrollController has no ScrollPosition attached.
Analyzing bug_repro...
No issues found! (ran in 28.8s)
[√] Flutter (Channel master, 3.5.0-10.0.pre.135, on Microsoft Windows [Version 10.0.19042.2486], locale en-US)
• Flutter version 3.5.0-10.0.pre.135 on channel master at C:\Users\bourdakos\Documents\flutter
• Upstream repository https://github.com/flutter/flutter.git
• Framework revision 15e694414c (4 months ago), 2022-10-27 15:06:35 -0700
• Engine revision 8bb0441e59
• Dart version 2.19.0 (build 2.19.0-347.0.dev)
• DevTools version 2.18.0
[√] Windows Version (Installed version of Windows is version 10 or higher)
[X] Android toolchain - develop for Android devices
• Android SDK at C:\Users\bourdakos\platform-tools_r31.0.3-windows
X cmdline-tools component is missing
Run `path/to/sdkmanager --install "cmdline-tools;latest"`
See https://developer.android.com/studio/command-line for more details.
[√] Chrome - develop for the web
• Chrome at C:\Program Files\Google\Chrome\Application\chrome.exe
[√] Visual Studio - develop for Windows (Visual Studio Professional 2019 16.11.20)
• Visual Studio at C:\Program Files (x86)\Microsoft Visual Studio\2019\Professional
• Visual Studio Professional 2019 version 16.11.32929.386
• Windows 10 SDK version 10.0.19041.0
[!] Android Studio (not installed)
• Android Studio not found; download from https://developer.android.com/studio/index.html
(or visit https://flutter.dev/docs/get-started/install/windows#android-setup for detailed instructions).
[√] VS Code (version 1.75.0)
• VS Code at C:\Users\bourdakos\AppData\Local\Programs\Microsoft VS Code
• Flutter extension version 3.58.0
[√] Connected device (3 available)
• Windows (desktop) • windows • windows-x64 • Microsoft Windows [Version 10.0.19042.2486]
• Chrome (web) • chrome • web-javascript • Google Chrome 110.0.5481.77
• Edge (web) • edge • web-javascript • Microsoft Edge 107.0.1418.42
[√] HTTP Host Availability
• All required HTTP hosts are available
! Doctor found issues in 2 categories.
Metadata
Metadata
Assignees
Labels
P2Important issues not at the top of the work listImportant issues not at the top of the work lista: desktopRunning on desktopRunning on desktopcustomer: googleVarious Google teamsVarious Google teamsf: scrollingViewports, list views, slivers, etc.Viewports, list views, slivers, etc.platform-windowsBuilding on or for Windows specificallyBuilding on or for Windows specificallyr: fixedIssue is closed as already fixed in a newer versionIssue is closed as already fixed in a newer version