We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3c1e258 commit 87bac26Copy full SHA for 87bac26
packages/flutter/test/material/data_table_test.dart
@@ -1905,6 +1905,22 @@ void main() {
1905
expect(secondaryTapped, isTrue);
1906
expect(secondaryTappedDown, isTrue);
1907
});
1908
+
1909
+ testWidgets('TableRowInkWell renders at zero area', (WidgetTester tester) async {
1910
+ await tester.pumpWidget(
1911
+ MaterialApp(
1912
+ home: Material(
1913
+ child: SizedBox.shrink(
1914
+ child: Table(
1915
+ children: const <TableRow>[
1916
+ TableRow(children: <Widget>[TableRowInkWell(child: Text('X'))]),
1917
+ ],
1918
+ ),
1919
1920
1921
1922
+ );
1923
+ });
1924
1925
1926
testWidgets('Heading cell cursor resolves MaterialStateMouseCursor correctly', (
0 commit comments