Skip to main content

All Questions

0 votes
0 answers
38 views

GetX5 animation played only once when widget is built first time

I am trying to animate the button using simplified animation from the GetX (5.0-release-candidate-9) package. The problem is that the animation method is called only once when the page is loaded, but ...
Yuriy N.'s user avatar
  • 6,195
0 votes
1 answer
252 views

how to fix mirror effect while animate widget in flutter

I try build a 3d animation with getX. It is working fine except for a minor issue. When the animation finishes, it behaves as if there is a mirror and flips the image according to the axis it rotated. ...
Doğukan Çiftçi's user avatar
0 votes
2 answers
2k views

How to use AnimationController in GetX with GetTickerProviderStateMixin

I want to impeliment animation in flutter with GetxController and GetView to controll my animation in every widget I want and this is my Getx Controller: class TestAnimationController extends ...
Tofiq Samali's user avatar
0 votes
1 answer
1k views

Flutter animation controller using GetX

I recently switch to GetX and want to init animation controller in GetxController and can access it in GetView. When app started animation gets to go without any problem but can not forward it again. ...
Tofiq Samali's user avatar
2 votes
1 answer
685 views

Flutter AnimatedSwitcher not animating with with Getx / Obx?

Has anyone had this issue : I'm trying to animate (fade) the changeover of a background image using a GetX controller and OBX to change the child / rebuild. The change of image works, but the fade ...
Mark Bowler's user avatar
0 votes
1 answer
761 views

How to create animation controller on demand

Is it possible to write a function to create an animation controller? I have dynamic data, if my data return 3, I will need to create 3 animation controller. Edit: Thank you pskink for the List....
legofans's user avatar
0 votes
1 answer
308 views

AnimationController with GetView and GetxController

Im trying to create a animationController with a view that extends GetView. I should implement SingleGetTickerProviderMixin in my Getxcontroller but its deprecated and should use ...
Maikzen's user avatar
  • 1,622
0 votes
1 answer
405 views

expected a value of type 1Animation<double>1, but got one of type 'Null'

The following is my auth screen, authentication.dart code: class AuthenticationScreen extends StatelessWidget { const AuthenticationScreen({Key? key}) : super(key: key); @override Widget build(...
user avatar
0 votes
0 answers
795 views

How to use Animation while managing state (GetX)?

I am struggling trying to figure out how to simultaneously implement animation while using a state management solution (GetX). With this code in the UI: class _HomePageState extends State<...
Al C's user avatar
  • 5,397
2 votes
2 answers
6k views

flutter how to implement animation inside class GetView<Controller>

I'm starting a flutter project and many people said that GetX is the best state manager framework to use in flutter, so I decide to use it. I want to do some animation in class HomePage, but when I ...
Scofield Tran's user avatar