Showing
1 changed file
with
3 additions
and
1 deletions
| @@ -670,7 +670,9 @@ class Table extends Widget with SpanningWidget { | @@ -670,7 +670,9 @@ class Table extends Widget with SpanningWidget { | ||
| 670 | } | 670 | } |
| 671 | 671 | ||
| 672 | double _getHeight(int heightIndex) { | 672 | double _getHeight(int heightIndex) { |
| 673 | - return (heightIndex >= 0 && heightIndex < _heights.length) ? _heights[heightIndex] : 0.0; | 673 | + return (heightIndex >= 0 && heightIndex < _heights.length) |
| 674 | + ? _heights[heightIndex] | ||
| 675 | + : 0.0; | ||
| 674 | } | 676 | } |
| 675 | 677 | ||
| 676 | static TextAlign _textAlign(Alignment align) { | 678 | static TextAlign _textAlign(Alignment align) { |
-
Please register or login to post a comment