Skip to content

Commit ec47148

Browse files
[Windows_android channels_integration_test] Column -> ListView (#134836)
This should fix flutter/flutter#134636. The column can get really tall, especially when there's line wrapping. This is the layout on a tablet, so on a motor g4 this column is likely going to overflow. ``` RenderParagraph#66251 relayoutBoundary=up3 � creator: RichText � Text-[<'status'>] � Column � � FutureBuilder<TestStepResult> � Padding � � KeyedSubtree-[GlobalKey#0f29e] � _BodyBuilder � MediaQuery � � LayoutId-[<_ScaffoldSlot.body>] � CustomMultiChildLayout � � _ActionsScope � Actions � � | parentData: offset=Offset(0.0, 600.0); flex=null; fit=null ``` ![flutter_01](https://github.com/flutter/flutter/assets/31859944/5e700d21-3c5e-4990-bfb5-153f44f1c517)
1 parent 43260cc commit ec47148

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

dev/integration_tests/channels/lib/src/test_step.dart

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,8 +69,7 @@ class TestStepResult {
6969
);
7070

7171
Widget asWidget(BuildContext context) {
72-
return Column(
73-
crossAxisAlignment: CrossAxisAlignment.start,
72+
return ListView(
7473
children: <Widget>[
7574
Text('Step: $name', style: bold),
7675
Text(description),

0 commit comments

Comments
 (0)