动画化容器的属性

The Container 类提供了一种便捷的方式来创建具有特定属性的小部件:宽度、高度、背景颜色、填充、边框等等。

简单的动画通常涉及随着时间的推移改变这些属性。例如,您可能希望将背景颜色从灰色动画到绿色,以指示用户已选择某个项目。

为了对这些属性进行动画处理,Flutter 提供了 AnimatedContainer 小部件。与 Container 小部件类似,AnimatedContainer 允许您定义宽度、高度、背景颜色等。但是,当 AnimatedContainer 使用新属性重建时,它会自动在旧值和新值之间进行动画处理。在 Flutter 中,这些类型的动画被称为“隐式动画”。

本食谱介绍了如何使用 AnimatedContainer 在用户点击按钮时对大小、背景颜色和边框半径进行动画处理,具体步骤如下:

  1. 创建一个具有默认属性的 StatefulWidget。
  2. 使用属性构建一个 AnimatedContainer
  3. 通过使用新属性重建来启动动画。

1. 使用默认属性创建 StatefulWidget

#

首先,创建 StatefulWidgetState 类。使用自定义 State 类来定义随时间变化的属性。在本例中,包括宽度、高度、颜色和边框半径。您还可以定义每个属性的默认值。

这些属性属于自定义 State 类,因此当用户点击按钮时可以更新它们。

dart
class AnimatedContainerApp extends StatefulWidget {
  const AnimatedContainerApp({super.key});

  @override
  State<AnimatedContainerApp> createState() => _AnimatedContainerAppState();
}

class _AnimatedContainerAppState extends State<AnimatedContainerApp> {
  // Define the various properties with default values. Update these properties
  // when the user taps a FloatingActionButton.
  double _width = 50;
  double _height = 50;
  Color _color = Colors.green;
  BorderRadiusGeometry _borderRadius = BorderRadius.circular(8);

  @override
  Widget build(BuildContext context) {
    // Fill this out in the next steps.
  }
}

2. 使用属性构建一个 AnimatedContainer

#

接下来,使用上一步中定义的属性构建 AnimatedContainer。此外,提供一个 duration 来定义动画运行的时间长度。

dart
AnimatedContainer(
  // Use the properties stored in the State class.
  width: _width,
  height: _height,
  decoration: BoxDecoration(
    color: _color,
    borderRadius: _borderRadius,
  ),
  // Define how long the animation should take.
  duration: const Duration(seconds: 1),
  // Provide an optional curve to make the animation feel smoother.
  curve: Curves.fastOutSlowIn,
)

3. 使用新属性重建以启动动画

#

最后,通过使用新属性重建 AnimatedContainer 来启动动画。如何触发重建?使用 setState() 方法。

在应用程序中添加一个按钮。当用户点击按钮时,在对 setState() 的调用中,使用新的宽度、高度、背景颜色和边框半径更新属性。

一个真实的应用程序通常会在固定值之间进行过渡(例如,从灰色背景过渡到绿色背景)。对于此应用程序,在用户每次点击按钮时生成新值。

dart
FloatingActionButton(
  // When the user taps the button
  onPressed: () {
    // Use setState to rebuild the widget with new values.
    setState(() {
      // Create a random number generator.
      final random = Random();

      // Generate a random width and height.
      _width = random.nextInt(300).toDouble();
      _height = random.nextInt(300).toDouble();

      // Generate a random color.
      _color = Color.fromRGBO(
        random.nextInt(256),
        random.nextInt(256),
        random.nextInt(256),
        1,
      );

      // Generate a random border radius.
      _borderRadius =
          BorderRadius.circular(random.nextInt(100).toDouble());
    });
  },
  child: const Icon(Icons.play_arrow),
)

交互式示例

#
import 'dart:math';

import 'package:flutter/material.dart';

void main() => runApp(const AnimatedContainerApp());

class AnimatedContainerApp extends StatefulWidget {
  const AnimatedContainerApp({super.key});

  @override
  State<AnimatedContainerApp> createState() => _AnimatedContainerAppState();
}

class _AnimatedContainerAppState extends State<AnimatedContainerApp> {
  // Define the various properties with default values. Update these properties
  // when the user taps a FloatingActionButton.
  double _width = 50;
  double _height = 50;
  Color _color = Colors.green;
  BorderRadiusGeometry _borderRadius = BorderRadius.circular(8);

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(
          title: const Text('AnimatedContainer Demo'),
        ),
        body: Center(
          child: AnimatedContainer(
            // Use the properties stored in the State class.
            width: _width,
            height: _height,
            decoration: BoxDecoration(
              color: _color,
              borderRadius: _borderRadius,
            ),
            // Define how long the animation should take.
            duration: const Duration(seconds: 1),
            // Provide an optional curve to make the animation feel smoother.
            curve: Curves.fastOutSlowIn,
          ),
        ),
        floatingActionButton: FloatingActionButton(
          // When the user taps the button
          onPressed: () {
            // Use setState to rebuild the widget with new values.
            setState(() {
              // Create a random number generator.
              final random = Random();

              // Generate a random width and height.
              _width = random.nextInt(300).toDouble();
              _height = random.nextInt(300).toDouble();

              // Generate a random color.
              _color = Color.fromRGBO(
                random.nextInt(256),
                random.nextInt(256),
                random.nextInt(256),
                1,
              );

              // Generate a random border radius.
              _borderRadius =
                  BorderRadius.circular(random.nextInt(100).toDouble());
            });
          },
          child: const Icon(Icons.play_arrow),
        ),
      ),
    );
  }
}