Unverified Commit 6d5810ec authored by Jason Simmons's avatar Jason Simmons Committed by GitHub

Fix an analyzer warning (#15627)

parent 71b2cfb2
......@@ -200,7 +200,7 @@ class _AllSectionsLayout extends MultiChildLayoutDelegate {
// When tCollapsed > 0, the indicators move closer together
//final double rowIndicatorWidth = 48.0 + (1.0 - tCollapsed) * (rowTitleWidth - 48.0);
final double paddedSectionIndicatorWidth = kSectionIndicatorWidth + 8.0;
const double paddedSectionIndicatorWidth = kSectionIndicatorWidth + 8.0;
final double rowIndicatorWidth = paddedSectionIndicatorWidth +
(1.0 - tCollapsed) * (rowTitleWidth - paddedSectionIndicatorWidth);
double rowIndicatorX = (size.width - rowIndicatorWidth) / 2.0 - selectedIndex * rowIndicatorWidth;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment