Skip to content

Commit

Permalink
Make it harder for getMinIntrinsicWidth.
Browse files Browse the repository at this point in the history
Apparently Flutter@master can now calculate intrinsics for baseline alignment
  • Loading branch information
daohoangson committed Apr 8, 2024
1 parent 5d34708 commit da6db88
Showing 1 changed file with 2 additions and 10 deletions.
12 changes: 2 additions & 10 deletions packages/core/test/tag_table_test.dart
Expand Up @@ -1064,16 +1064,8 @@ Future<void> main() async {
HtmlTableCell(
columnStart: 0,
rowStart: 0,
child: Text.rich(
const TextSpan(
children: [
WidgetSpan(
alignment: PlaceholderAlignment.baseline,
baseline: TextBaseline.alphabetic,
child: Text('Foo foo foo foo'),
),
],
),
child: LayoutBuilder(
builder: (_, __) => const Text('Foo foo foo foo'),
key: left,
),
),
Expand Down

1 comment on commit da6db88

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.