Flutter Development (Day-16): All source code : Click Here . Sorry for the last two days I haven't posted anything because I am ready to leave my hometown to attend my college.Is there anyone from AndhraPradesh or Tamilnadu .If yes please provide your city name in the comment section. In this post we are going to proceed the next level of our todo app.We are going add animations to our app,Code clean Up and some UI changes. We add the animation to our FloationgActionButton.You may ask why you haven't add animations to others as well? I tried it but it is looking weird. Adding animations to FloationgActionButton is very much similar to our previous basic animation tutorial. From the next we are going to deal with some of the important widgets which we will be using in further tutorials. If you are following this tutorial / blog please leave your opinion 👀 / say Hii ✋/ Your e-mail in the comment section that I can improve myself and it will gives boost for me to
Flutter Development (Day-15): All source code : Click Here . In this post we are going to extend our knowledge by exploring more about animations in Flutter. In the last two posts we have discussed about basic delay animations by creating a simple Login and SignUp Screens. In this post we are going to talk another two types of animations PARENT,VALUE CHANGED ANIMATION. Parenting animation -> In the below example one is the box moving along the x axis, and the same box is resizing. Value Changed Animation -> IN the below example the value is changing between 10 to 1 by including some Animation. Demo: Explanation Define the animations like void initState() { super.initState(); animationController = AnimationController( vsync: this, duration: Duration( seconds: 4, ), ); parentAnimation = Tween<double>( begin: -0.50, end: 0.0, ).animate( CurvedAnimation(