// Copyright 2014 The Flutter Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. import 'package:flutter/material.dart'; /// Flutter code sample for [TweenAnimationBuilder]. void main() => runApp(const TweenAnimationBuilderExampleApp()); class TweenAnimationBuilderExampleApp extends StatelessWidget { const TweenAnimationBuilderExampleApp({super.key}); @override Widget build(BuildContext context) { return MaterialApp( home: Scaffold( appBar: AppBar(title: const Text('TweenAnimationBuilder Sample')), body: const Center(child: TweenAnimationBuilderExample()), ), ); } } class TweenAnimationBuilderExample extends StatefulWidget { const TweenAnimationBuilderExample({super.key}); @override State createState() => _TweenAnimationBuilderExampleState(); } class _TweenAnimationBuilderExampleState extends State { double _targetValue = 24.0; @override Widget build(BuildContext context) { return TweenAnimationBuilder( tween: Tween(begin: 0, end: _targetValue), duration: const Duration(seconds: 1), builder: (BuildContext context, double size, Widget? child) { return IconButton( iconSize: size, color: Colors.blue, icon: child!, onPressed: () { setState(() { _targetValue = _targetValue == 24.0 ? 48.0 : 24.0; }); }, ); }, child: const Icon(Icons.aspect_ratio), ); } }