-
Notifications
You must be signed in to change notification settings - Fork 29.8k
Closed
flutter/engine
#31656Labels
P2Important issues not at the top of the work listImportant issues not at the top of the work listc: regressionIt was better in the past than it is nowIt was better in the past than it is nowc: renderingUI glitches reported at the engine/skia or impeller rendering levelUI glitches reported at the engine/skia or impeller rendering levelengineflutter/engine related. See also e: labels.flutter/engine related. See also e: labels.f: scrollingViewports, list views, slivers, etc.Viewports, list views, slivers, etc.found in release: 2.10Found to occur in 2.10Found to occur in 2.10found in release: 2.11Found to occur in 2.11Found to occur in 2.11has reproducible stepsThe issue has been confirmed reproducible and is ready to work onThe issue has been confirmed reproducible and is ready to work onplatform-iosiOS applications specificallyiOS applications 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 below code sample on iOS with Flutter 2.10 - Scroll the page and notice the visual glitch with the bottom blue square
I see that with iOS 15.1 on iPhone 11 (real and simulator)
Actual results:
Screen.Recording.2022-02-18.at.10.22.31.mp4
Code sample
import 'package:flutter/material.dart';
void main() {
runApp(_App());
}
class _App extends StatelessWidget {
const _App({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
body: ListView(
children: [
for (var i = 0; i < 100; i++)
Padding(
padding: const EdgeInsets.all(20.0),
child: Text('abc ' * 20),
)
],
),
bottomNavigationBar: Material(
child: Transform.translate(
offset: Offset(0, -20),
child: Container(
color: Colors.blue,
child: SizedBox(
height: 70,
),
),
),
),
),
);
}
}Logs
[✓] Flutter (Channel stable, 2.10.1, on macOS 11.6 20G165 darwin-x64, locale
en-BE)
• Flutter version 2.10.1 at /Users/xavier/projects/flutter_stable
• Upstream repository https://github.com/flutter/flutter.git
• Framework revision db747aa133 (9 days ago), 2022-02-09 13:57:35 -0600
• Engine revision ab46186b24
• Dart version 2.16.1
• DevTools version 2.9.2
Metadata
Metadata
Assignees
Labels
P2Important issues not at the top of the work listImportant issues not at the top of the work listc: regressionIt was better in the past than it is nowIt was better in the past than it is nowc: renderingUI glitches reported at the engine/skia or impeller rendering levelUI glitches reported at the engine/skia or impeller rendering levelengineflutter/engine related. See also e: labels.flutter/engine related. See also e: labels.f: scrollingViewports, list views, slivers, etc.Viewports, list views, slivers, etc.found in release: 2.10Found to occur in 2.10Found to occur in 2.10found in release: 2.11Found to occur in 2.11Found to occur in 2.11has reproducible stepsThe issue has been confirmed reproducible and is ready to work onThe issue has been confirmed reproducible and is ready to work onplatform-iosiOS applications specificallyiOS applications specificallyr: fixedIssue is closed as already fixed in a newer versionIssue is closed as already fixed in a newer version