Commit f0d2f5c5 authored by Matt Perry's avatar Matt Perry Committed by GitHub

Micro tweak to Pesto logo. Text fades out a bit sooner. (#5983)

parent dc5e1bba
......@@ -197,7 +197,7 @@ class _PestoLogoState extends State<PestoLogo> {
begin: new Rect.fromLTWH(0.0, kLogoHeight, kLogoWidth, kTextHeight),
end: new Rect.fromLTWH(0.0, kImageHeight, kLogoWidth, kTextHeight)
);
final Curve _textOpacity = const Interval(0.3, 1.0, curve: Curves.easeInOut);
final Curve _textOpacity = const Interval(0.4, 1.0, curve: Curves.easeInOut);
final RectTween _imageRectTween = new RectTween(
begin: new Rect.fromLTWH(0.0, 0.0, kLogoWidth, kLogoHeight),
end: new Rect.fromLTWH(0.0, 0.0, kLogoWidth, kImageHeight)
......
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