flutter animatedcontainer
AnimatedContainer(
curve: Curves.linear,
color: Colors.pink[100],
width: 200.0, // change width or height to see animation
height: 200.0,
duration: const Duration(seconds: 2),
)
flutter animatedcontainer
AnimatedContainer(
curve: Curves.linear,
color: Colors.pink[100],
width: 200.0, // change width or height to see animation
height: 200.0,
duration: const Duration(seconds: 2),
)
flutter animatedcontainer
AnimatedContainer(
width: MediaQuery.of(context).size.width, //change to see the change - super cool
alignment: Alignment.bottomCenter, //align to i.e topCenter to see the awesome transition
height: MediaQuery.of(context).size.height,
duration: Duration(milliseconds: 100),
padding: EdgeInsets.fromLTRB(15, 10, 15, 5),
decoration: BoxDecoration(
gradient: LinearGradient(
begin: Alignment.topRight,
end: Alignment.bottomLeft,
colors: [Colors.grey, Colors.white],
)),
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us