File tree Expand file tree Collapse file tree 3 files changed +6
-2
lines changed
packages/two_dimensional_scrollables Expand file tree Collapse file tree 3 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 1+ ## 0.0.5+2
2+
3+ * Fixes must_call_super lint warning from pending framework change.
4+
15## 0.0.5+1
26
37* Fixes new lint warnings.
Original file line number Diff line number Diff line change @@ -329,7 +329,7 @@ class RenderTableViewport extends RenderTwoDimensionalViewport {
329329
330330 @override
331331 TableViewParentData parentDataOf (RenderBox child) =>
332- child.parentData ! as TableViewParentData ;
332+ super . parentDataOf (child) as TableViewParentData ;
333333
334334 @override
335335 void setupParentData (RenderBox child) {
Original file line number Diff line number Diff line change 11name : two_dimensional_scrollables
22description : Widgets that scroll using the two dimensional scrolling foundation.
3- version : 0.0.5+1
3+ version : 0.0.5+2
44repository : https://github.com/flutter/packages/tree/main/packages/two_dimensional_scrollables
55issue_tracker : https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+two_dimensional_scrollables%22+
66
You can’t perform that action at this time.
0 commit comments