Flutter Animation: In this article, we will see how can we rotate a circle with animation in the Flutter. Flutter has an “AnimationController” to control the animation and an “AnimatedBuilder” to build means to show the animation on the screen of any widget. We can use the AnimationController and its...
Continue reading...flutter tutorials
Flutter Animation: How to repeat the animation of the circle
Flutter Animation: In this article, we will see how can we repeat the animation of a circle in the Flutter. Flutter has an animation controller to control the animation of any widget. We can use the AnimationController and its properties like duration, curve, and more… Repeat Animation of Circle To...
Continue reading...Flutter Animation: How to animate a Circle in the Flutter
Flutter Animation: In this article, we will see how can we animate a circle, how can we repeat animation and how can we rotate a circle in the flutter. Source: LottieFiles.com Animate a Circle: To animate a circle in Flutter, you can use the AnimatedContainer widget. This widget allows you...
Continue reading...Scaffold – Widget of the day #01 | Flutter Beginner
In this article, We will see the flutter Scaffold widget. we will understand all its properties and also the things we use in every project. In our flutter project, we declare each and everything under the scaffold widget. Scaffold widget has many properties like app bar, drawer, backgroundColor, floating action...
Continue reading...How to make a flutter counter app with the provider?
In this article, we will learn how can we make a simple flutter counter app with provider State Management. A counter app is an application in which we can increase or decrease a value by pressing the buttons. An example of this is when we create a flutter application then you see a default...
Continue reading...How to make Flutter Counter App with GetX
In this article, we will learn how can we make a simple flutter counter app with GetX State Management. A counter app is an application in which we can increase or decrease a value by pressing the buttons. An example of this is when we create a flutter application then you see a default...
Continue reading...