Animated Container Screen In Flutter :
This flutter tutorial is AnimatedContainer single selectable card in flutter.
Animated Container Screen In Flutter Screenshot :

AnimatedContainerScreen.dart
import 'package:flutter/material.dart'; class AnimatedContainerScreen extends StatefulWidget { @override AnimatedContainerState createState() => AnimatedContainerState(); } class AnimatedContainerState extends State<AnimatedContainerScreen> { var selectedCard = 'Flutter'; @override void dispose() { super.dispose(); } @override Widget build(BuildContext context) { return Scaffold( appBar: AppBar(title: Text('Animated Container Selectable Card')), body: Container( margin: EdgeInsets.all(10), height: 150.0, child: ListView( scrollDirection: Axis.horizontal, children: <Widget>[ _buildInfoCard('Flutter', 'Google'), SizedBox(width: 10.0), _buildInfoCard('Android', 'Google'), SizedBox(width: 10.0), _buildInfoCard('PHP', '-'), SizedBox(width: 10.0), _buildInfoCard('Java', 'Sun Microsystems') ], )), ); } Widget _buildInfoCard(String cardTitle, String info) { return InkWell( onTap: () { selectCard(cardTitle); }, child: AnimatedContainer( duration: Duration(milliseconds: 500), curve: Curves.easeIn, decoration: BoxDecoration( borderRadius: BorderRadius.circular(10.0), color: cardTitle == selectedCard ? Color(0xFF7A9BEE) : Colors.white, border: Border.all( color: cardTitle == selectedCard ? Colors.transparent : Colors.grey.withOpacity(0.3), style: BorderStyle.solid, width: 0.75), ), height: 100.0, width: 100.0, child: Column( mainAxisAlignment: MainAxisAlignment.spaceBetween, crossAxisAlignment: CrossAxisAlignment.start, children: [ Padding( padding: const EdgeInsets.only(top: 8.0, left: 15.0), child: Text(cardTitle, style: TextStyle( fontFamily: 'Montserrat', fontSize: 12.0, color: cardTitle == selectedCard ? Colors.white : Colors.grey.withOpacity(0.7), )), ), Padding( padding: const EdgeInsets.only(left: 15.0, bottom: 8.0), child: Column( crossAxisAlignment: CrossAxisAlignment.start, children: <Widget>[ Text(info, style: TextStyle( fontFamily: 'Montserrat', fontSize: 14.0, color: cardTitle == selectedCard ? Colors.white : Colors.black, fontWeight: FontWeight.bold)), Text('Description', style: TextStyle( fontFamily: 'Montserrat', fontSize: 12.0, color: cardTitle == selectedCard ? Colors.white : Colors.black, )) ], ), ) ]))); } selectCard(cardTitle) { setState(() { selectedCard = cardTitle; }); } }
The flutter tutorial is a website that bring you the latest and amazing resources of code. All the languages codes are included in this website. The languages like flutter, android, java,kotlin etc.with the help of this languages any user can develop the beautiful application
For more information about Flutter. visit www.fluttertutorial.in