| // Copyright 2014 The Chromium Authors. All rights reserved. |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| import 'package:flutter/material.dart'; |
| class CullOpacityPage extends StatefulWidget { |
| State<StatefulWidget> createState() => _CullOpacityPageState(); |
| class _CullOpacityPageState extends State<CullOpacityPage> with SingleTickerProviderStateMixin { |
| Animation<double> _offsetY; |
| AnimationController _controller; |
| _controller = AnimationController(vsync: this, duration: const Duration(seconds: 2)); |
| _offsetY = Tween<double>(begin: 0, end: -1000.0).animate(_controller)..addListener((){ |
| Widget build(BuildContext context) { |
| return Stack(children: List<Widget>.generate(50, (int i) => Positioned( |
| top: (200 * i).toDouble() + _offsetY.value, |
| // Slightly change width to invalidate raster cache. |
| width: 1000 - (_offsetY.value / 100), |
| height: 100, color: Colors.red, |