内容简介:了解过Android 开发的应该知道,在Android 中给控件设置属性动画还是比较麻烦的,而且多个属性动画一起设置的话更是麻烦,要写很多行代码。那么在Flutter 中,给Widget 设置动画就完全不需要那么复杂。只需要使用
了解过Android 开发的应该知道,在Android 中给控件设置属性动画还是比较麻烦的,而且多个属性动画一起设置的话更是麻烦,要写很多行代码。
那么在Flutter 中,给Widget 设置动画就完全不需要那么复杂。只需要使用 AnimatedContainer
就够了。
AnimatedContainer
看名字就应该知道,他是Container + Animat ,也就是带动画的容器。 AnimatedContainer
继承于 ImplicitlyAnimatedWidget
,我们点开源码,可以看到类上面的注释:
/// An abstract widget for building widgets that gradually change their /// values over a period of time. /// /// Subclasses' States must provide a way to visit the subclass's relevant /// fields to animate. [ImplicitlyAnimatedWidget] will then automatically /// interpolate and animate those fields using the provided duration and /// curve when those fields change.
简单翻译一下就是:
这个类是用来构建带动画的widget,可以在一段时间内改变其值。
子类必须提供一种方法来访问子类的相关字段以进行动画的处理,当这些字段发生变化的时候,ImplicitlyAnimatedWidget 将使用提供的 duration 和 curve 来自动设置动画。
说的很厉害,来个例子:
实现上图效果非常简单,逻辑代码根本没有,只需要定义好几个数值,随机就ok。
首先定义几个变量:颜色,位置,宽高和下标:
var _colors = [ Colors.red, Colors.green, Colors.amber, Colors.blue, Colors.deepPurple ]; var _alignments = [ Alignment.center, Alignment.bottomLeft, Alignment.bottomRight, Alignment.topRight, Alignment.topLeft, ]; double _weight = 400; double _height = 400; int index = 0; 复制代码
然后我们定义一个方法,用来点击的时候调用,随机变换数值:
next() { setState(() { if(_weight == 400){ _weight -= 100; _height -= 100; }else { _weight += 100; _height += 100; } index = Random().nextInt(5); }); } 复制代码
最后我们写 build
方法来实现页面:
@override Widget build(BuildContext context) { return Scaffold( appBar: AppBar( title: Text('AnimatedContainerDemo'), ), body: Center( // 让View在中间 child: GestureDetector( // 手势识别控件,用来写点击事件 onTap: (){ setState(() { next(); }); }, child: AnimatedContainer( // AnimatedContainer控件 width: _weight, //设置上变量里的宽高 height: _height, curve: Curves.fastOutSlowIn, // 设置插值属性 duration: Duration(milliseconds: 500), // 设置时间 color: _colors[index], //设置颜色 alignment: _alignments[index], // 设置位置 child: Text( 'A', style: TextStyle(color: Colors.white, fontSize: 50), ), ), ), ), ); } 复制代码
可以看到代码里非常简单,只是设置了一个AnimatedContainer Widget,把属性填上去。
这个时候和我们在 ImplicitlyAnimatedWidget
源码中看到的注释一样,只要有值发生了变化,那么 AnimatedContainer
就会自动设置插值属性来改变值,这样动画效果就出来了。
以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,也希望大家多多支持 码农网
猜你喜欢:- laravel自带用户认证
- Mac自带apache配置
- opencv自带例子学习-图像混合
- Golang中自带的强大命令工具
- Android调用系统自带的分享功能
- 使用oracle自带的命令进行导入导出
本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
Understanding Computation
Tom Stuart / O'Reilly Media / 2013-6-3 / USD 39.99
Finally, you can learn computation theory and programming language design in an engaging, practical way. Understanding Computation explains theoretical computer science in a context you'll recognize, ......一起来看看 《Understanding Computation》 这本书的介绍吧!