cull_opacity.dart 1.65 KB
Newer Older
Ian Hickson's avatar
Ian Hickson committed
1
// Copyright 2014 The Flutter Authors. All rights reserved.
2 3 4
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

5 6 7
import 'package:flutter/material.dart';

class CullOpacityPage extends StatefulWidget {
8
  const CullOpacityPage({super.key});
9

10 11 12 13 14
  @override
  State<StatefulWidget> createState() => _CullOpacityPageState();
}

class _CullOpacityPageState extends State<CullOpacityPage> with SingleTickerProviderStateMixin {
15 16
  late Animation<double> _offsetY;
  late AnimationController _controller;
17 18 19 20 21

  @override
  void initState() {
    super.initState();

22
    _controller = AnimationController(vsync: this, duration: const Duration(seconds: 2));
23 24 25 26
    // Animations are typically implemented using the AnimatedBuilder widget.
    // This code uses a manual listener for historical reasons and will remain
    // in order to preserve compatibility with the history of measurements for
    // this benchmark.
27
    _offsetY = Tween<double>(begin: 0, end: -1000.0).animate(_controller)..addListener(() {
28 29 30 31 32
      setState(() {});
    });
    _controller.repeat();
  }

33 34 35 36 37 38
  @override
  void dispose() {
    _controller.dispose();
    super.dispose();
  }

39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56
  @override
  Widget build(BuildContext context) {
    return Stack(children: List<Widget>.generate(50, (int i) => Positioned(
      left: 0,
      top: (200 * i).toDouble() + _offsetY.value,
      child: Opacity(
        opacity: 0.5,
        child: RepaintBoundary(
          child: Container(
            // Slightly change width to invalidate raster cache.
            width: 1000 - (_offsetY.value / 100),
            height: 100, color: Colors.red,
          ),
        ),
      ),
    )));
  }
}