Merge pull request #477 from abarth/reprojection

Reduce paint time for Stocks drawer animation by 88%
This commit is contained in:
Adam Barth 2015-11-18 16:21:50 -08:00
commit 67b2ee3a3b

View file

@ -202,7 +202,9 @@ class _DrawerControllerState extends State<_DrawerController> {
widthFactor: _performance.progress,
child: new SizeObserver(
onSizeChanged: _handleSizeChanged,
child: config.child
child: new ForcedLayer(
child: config.child
)
)
)
)