Open bigbott opened 3 weeks ago
slide does not work.
slide
Text( 'Slide', style: TextStyle(fontSize: 20), ).slide( duration: Duration(milliseconds: 500), begin: 0.5, end: 7, offset: (context, offset) { return Offset(-10, 25); }, ),
Just nothing happens
blur is applied not to the current widget but to the above widgets
blur
Text( 'Blur', style: TextStyle(fontSize: 20), ).blur( duration: Duration(milliseconds: 500), ),
The Text widget will not be blurred but will be blurred all widgets above it.
GetBuilder<AnimatedPuppyController>( builder: (controller) { print('rebuild'); return Image( image: const AssetImage('assets/images/puppy.png'), width: controller.read(), ).spin(onComplete: (animationController) { // animationController.stop(); // animationController.dispose(); },); }, ),
The animation played only the first time when the page is loaded. When the Image widget gets rebuilt by GetBuilder nothing happens.
@jonataslaw Kindly
slide
does not work.Just nothing happens
blur
is applied not to the current widget but to the above widgetsThe Text widget will not be blurred but will be blurred all widgets above it.
The animation played only the first time when the page is loaded. When the Image widget gets rebuilt by GetBuilder nothing happens.