📜  2 秒颤动后的借口函数 - Dart 代码示例

📅  最后修改于: 2022-03-11 14:48:05.077000             🧑  作者: Mango

代码示例1
class AnimatedFlutterLogo extends StatefulWidget {
  @override
  State createState() => new _AnimatedFlutterLogoState();
}

class _AnimatedFlutterLogoState extends State {
  Timer _timer;
  FlutterLogoStyle _logoStyle = FlutterLogoStyle.markOnly;

  _AnimatedFlutterLogoState() {
    _timer = new Timer(const Duration(milliseconds: 400), () {
      setState(() {
        _logoStyle = FlutterLogoStyle.horizontal;
      });
    });
  }

  @override
  void dispose() {
    super.dispose();
    _timer.cancel();
  }

  @override
  Widget build(BuildContext context) {
    return new FlutterLogo(
      size: 200.0,
      textColor: Palette.white,
      style: _logoStyle,
    );
  }
}