Container 类提供了一系列实用方法,能够便捷地创建出一个具有指定宽度、高度、背景颜色、外边距和边框等属性的 Widget。

简单的动画通常会在一段时间内改变这些属性。例如你可能想将灰色背景逐渐变为绿色背景来告诉用户已经选择了某个项目。

为了制作这样的简单动画效果,Flutter 提供了 AnimatedContainer Widget。与 Container 一样,AnimatedContainer 也可以设置它的宽度、高度以及背景颜色等等。但是 AnimatedContainer 在使用新属性进行重建时,将会自动在旧值和新值之间生成动画。这种动画在 Flutter 中被称为“隐式动画”。

下面这篇教程将介绍如何使用 AnimatedContainer 实现当用户点击按钮时改变它的大小,背景颜色,以及边框半径的动画。

步骤

  • 创建一个拥有默认属性的 StatefulWidget

  • 创建一个使用这些属性的 AnimatedContainer

  • 通过设置新的属性触发重建并启动动画

1. 创建一个拥有默认属性的 StatefulWidget

首先你需要创建一个 StatefulWidget类和 State 类。然后在 State 类中定义需要随时间更改的属性。在这个示例中,我们将会改变其宽度、高度、颜色和边框半径。此外,你还可以定义其他默认属性。

但是这些属性必须定义在 State 类中,这样我们才能在用户点击按钮时更新它们。

  1. class AnimatedContainerApp extends StatefulWidget {
  2. @override
  3. _AnimatedContainerAppState createState() => _AnimatedContainerAppState();
  4. }
  5. class _AnimatedContainerAppState extends State<AnimatedContainerApp> {
  6. // Define the various properties with default values. Update these properties
  7. // when the user taps a FloatingActionButton.
  8. double _width = 50;
  9. double _height = 50;
  10. Color _color = Colors.green;
  11. BorderRadiusGeometry _borderRadius = BorderRadius.circular(8);
  12. @override
  13. Widget build(BuildContext context) {
  14. // Fill this out in the next steps
  15. }
  16. }

2. 创建一个使用这些属性的 AnimatedContainer

接下来,你就可以使用上一步中定义的属性来构建 AnimatedContainer。此外,你还必须提供一个 duration 它将定义这个动画应该运行多长时间。

  1. AnimatedContainer(
  2. // Use the properties stored in the State class.
  3. width: _width,
  4. height: _height,
  5. decoration: BoxDecoration(
  6. color: _color,
  7. borderRadius: _borderRadius,
  8. ),
  9. // Define how long the animation should take.
  10. duration: Duration(seconds: 1),
  11. // Provide an optional curve to make the animation feel smoother.
  12. curve: Curves.fastOutSlowIn,
  13. );

3. 通过设置新的属性触发重建并启动动画

最后将设置新的属性触发 AnimatedContainer 重建并启动动画。那么如何触发重建呢?当我们提到 StatefulWidgets 时,setState 就行了。

在这个例子中,我们给应用添加了一个按钮。当用户点击按钮时,将会调用 setState 去刷新它的宽度、高度、背景颜色和边框半径等属性。

实际项目通常只会在某些固定值之间进行转换(例如从灰色背景过渡到绿色背景)。在这个应用中,每次用户点击按钮都会生成新的值。

  1. FloatingActionButton(
  2. child: Icon(Icons.play_arrow),
  3. // When the user taps the button
  4. onPressed: () {
  5. // Use setState to rebuild the widget with new values.
  6. setState(() {
  7. // Create a random number generator.
  8. final random = Random();
  9. // Generate a random width and height.
  10. _width = random.nextInt(300).toDouble();
  11. _height = random.nextInt(300).toDouble();
  12. // Generate a random color.
  13. _color = Color.fromRGBO(
  14. random.nextInt(256),
  15. random.nextInt(256),
  16. random.nextInt(256),
  17. 1,
  18. );
  19. // Generate a random border radius.
  20. _borderRadius =
  21. BorderRadius.circular(random.nextInt(100).toDouble());
  22. });
  23. },
  24. );

一个完整的示例

  1. import 'dart:math';
  2. import 'package:flutter/material.dart';
  3. void main() => runApp(AnimatedContainerApp());
  4. class AnimatedContainerApp extends StatefulWidget {
  5. @override
  6. _AnimatedContainerAppState createState() => _AnimatedContainerAppState();
  7. }
  8. class _AnimatedContainerAppState extends State<AnimatedContainerApp> {
  9. // Define the various properties with default values. Update these properties
  10. // when the user taps a FloatingActionButton.
  11. double _width = 50;
  12. double _height = 50;
  13. Color _color = Colors.green;
  14. BorderRadiusGeometry _borderRadius = BorderRadius.circular(8);
  15. @override
  16. Widget build(BuildContext context) {
  17. return MaterialApp(
  18. home: Scaffold(
  19. appBar: AppBar(
  20. title: Text('AnimatedContainer Demo'),
  21. ),
  22. body: Center(
  23. child: AnimatedContainer(
  24. // Use the properties stored in the State class.
  25. width: _width,
  26. height: _height,
  27. decoration: BoxDecoration(
  28. color: _color,
  29. borderRadius: _borderRadius,
  30. ),
  31. // Define how long the animation should take.
  32. duration: Duration(seconds: 1),
  33. // Provide an optional curve to make the animation feel smoother.
  34. curve: Curves.fastOutSlowIn,
  35. ),
  36. ),
  37. floatingActionButton: FloatingActionButton(
  38. child: Icon(Icons.play_arrow),
  39. // When the user taps the button
  40. onPressed: () {
  41. // Use setState to rebuild the widget with new values.
  42. setState(() {
  43. // Create a random number generator.
  44. final random = Random();
  45. // Generate a random width and height.
  46. _width = random.nextInt(300).toDouble();
  47. _height = random.nextInt(300).toDouble();
  48. // Generate a random color.
  49. _color = Color.fromRGBO(
  50. random.nextInt(256),
  51. random.nextInt(256),
  52. random.nextInt(256),
  53. 1,
  54. );
  55. // Generate a random border radius.
  56. _borderRadius =
  57. BorderRadius.circular(random.nextInt(100).toDouble());
  58. });
  59. },
  60. ),
  61. ),
  62. );
  63. }
  64. }

这个 AnimatedContainer demo 展示了一个通过动画改变颜色、边框半径、放大和缩小的盒子