子组件大小发生变化是,进行动画渐变,可指定时长、对齐方式、曲线、vsync等属性。

相关组件

SizeTransition

AnimatedSize基本使用

【child】 : 孩子组件 【Widget】
【duration】 : 动画时长 【Duration】
【alignment】 : 对齐方式 【AlignmentGeometry】
【curve】 : 动画曲线 【Duration】
【vsync】 : vsync 【TickerProvider】
160.gif

  1. import 'package:flutter/material.dart';
  2. class CustomAnimatedSize extends StatefulWidget {
  3. @override
  4. _CustomAnimatedSizeState createState() => _CustomAnimatedSizeState();
  5. }
  6. class _CustomAnimatedSizeState extends State<CustomAnimatedSize>
  7. with SingleTickerProviderStateMixin {
  8. final double start = 100;
  9. final double end = 200;
  10. double _width;
  11. @override
  12. void initState() {
  13. _width = start;
  14. super.initState();
  15. }
  16. @override
  17. Widget build(BuildContext context) {
  18. return Column(
  19. children: <Widget>[
  20. _buildSwitch(),
  21. Container(
  22. color: Colors.grey.withAlpha(22),
  23. width: 200,
  24. height: 100,
  25. alignment: Alignment.center,
  26. child: AnimatedSize(
  27. vsync: this,
  28. duration: Duration(seconds: 1),
  29. curve: Curves.fastOutSlowIn,
  30. alignment: Alignment(0, 0),
  31. child: Container(
  32. height: 40,
  33. width: _width,
  34. alignment: Alignment.center,
  35. color: Colors.blue,
  36. child: Text(
  37. '张风捷特烈',
  38. style: TextStyle(color: Colors.white),
  39. ),
  40. ),
  41. ),
  42. ),
  43. ],
  44. );
  45. }
  46. Widget _buildSwitch() => Switch(
  47. value: _width == end,
  48. onChanged: (v) {
  49. setState(() {
  50. _width = v ? end : start;
  51. });
  52. });
  53. }