-
Notifications
You must be signed in to change notification settings - Fork 30.2k
Closed
Labels
in triagePresently being triaged by the triage teamPresently being triaged by the triage team
Description
Creating a list within a list causes the mouse scroll to stop working. Holding and dragging still works.
This problem was introduced in the latest version of the dev channel, before that it worked correctly
flutter doctor
Doctor summary (to see all details, run flutter doctor -v):
[✓] Flutter (Channel dev, 1.24.0-10.2.pre, on Mac OS X 10.15.4 19E287 darwin-x64, locale pt-BR)
[✓] Android toolchain - develop for Android devices (Android SDK version 29.0.2)
[!] Xcode - develop for iOS and macOS (Xcode 12.2)
! CocoaPods 1.8.4 out of date (1.9.0 is recommended).
CocoaPods is used to retrieve the iOS and macOS platform side's plugin code that responds to your plugin usage on the Dart
side.
Without CocoaPods, plugins will not work on iOS or macOS.
For more info, see https://flutter.dev/platform-plugins
To upgrade see https://guides.cocoapods.org/using/getting-started.html#installation for instructions.
[✓] Chrome - develop for the web
[✓] Android Studio (version 3.5)
[✓] VS Code (version 1.51.1)
[✓] Connected device (4 available)
! Doctor found issues in 1 category.
Sample Code:
import 'package:flutter/material.dart';
class Example extends StatefulWidget {
@override
State<StatefulWidget> createState() {
return ExampleState();
}
}
class ExampleState extends State<Example> {
@override
Widget build(BuildContext context) {
return ListView(
children: List.generate(100, (index) => index)
.map((e) => ListView(
shrinkWrap: true,
physics: NeverScrollableScrollPhysics(),
children: [
Card(
child: Container(
child: Text('Test'),
),
)
],
))
.toList());
}
}
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
in triagePresently being triaged by the triage teamPresently being triaged by the triage team