All Questions
10 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 ...
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. ...
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 ...
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.
...
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 ...
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....
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 ...
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(...
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<...
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 ...