Commit 84a879e6 authored by Dragoș Tiselice's avatar Dragoș Tiselice Committed by GitHub

Renamed constant. (#5910)

Due to a synchronization issue, a PR was merged with a green build
that was supposed to be rebuilt and to fail. This commit fixes the
issue by renaming the usage of a constant.
parent fffde14f
......@@ -120,7 +120,7 @@ class _RecipeGridPageState extends State<RecipeGridPage> {
final Size size = constraints.biggest;
final double appBarHeight = size.height - statusBarHeight;
final double extraPadding = new Tween<double>(begin: 10.0, end: 24.0).lerp(
((appBarHeight - kToolBarHeight) / _kAppBarHeight).clamp(0.0, 1.0)
((appBarHeight - kToolbarHeight) / _kAppBarHeight).clamp(0.0, 1.0)
);
final double logoHeight = appBarHeight - 1.5 * extraPadding;
return new Padding(
......
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