| // 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 [AnimatedContainer]. |
| |
| void main() => runApp(const AnimatedContainerExampleApp()); |
| |
| class AnimatedContainerExampleApp extends StatelessWidget { |
| const AnimatedContainerExampleApp({super.key}); |
| |
| @override |
| Widget build(BuildContext context) { |
| return MaterialApp( |
| home: Scaffold( |
| appBar: AppBar(title: const Text('AnimatedContainer Sample')), |
| body: const AnimatedContainerExample(), |
| ), |
| ); |
| } |
| } |
| |
| class AnimatedContainerExample extends StatefulWidget { |
| const AnimatedContainerExample({super.key}); |
| |
| @override |
| State<AnimatedContainerExample> createState() => _AnimatedContainerExampleState(); |
| } |
| |
| class _AnimatedContainerExampleState extends State<AnimatedContainerExample> { |
| bool selected = false; |
| |
| @override |
| Widget build(BuildContext context) { |
| return GestureDetector( |
| onTap: () { |
| setState(() { |
| selected = !selected; |
| }); |
| }, |
| child: Center( |
| child: AnimatedContainer( |
| width: selected ? 200.0 : 100.0, |
| height: selected ? 100.0 : 200.0, |
| color: selected ? Colors.red : Colors.blue, |
| alignment: selected ? Alignment.center : AlignmentDirectional.topCenter, |
| duration: const Duration(seconds: 2), |
| curve: Curves.fastOutSlowIn, |
| child: const FlutterLogo(size: 75), |
| ), |
| ), |
| ); |
| } |
| } |