flutter_animate
flutter_animate copied to clipboard
Add beautiful animated effects & builders in Flutter, via an easy, highly customizable unified API.
Having two Widgets with the same animation controller and same animation with the only difference being, that one of the Widgets has a delay sometimes causes this error: "Assertion failed:...
Added SwitchEffect() with a callback inbetween the two animations and another callback at the end of the animations. @gskinner I ask you to update the documentation since I am not...
It could be useful to allow `onInit` handlers to return a boolean to override `autoPlay`. ``` dart foo.animate( onInit: (c) { // do some stuff return false; // prevent autoplay...
Flutter has recently introduced the [`@widgetFactory`](https://master-api.flutter.dev/flutter/widgets/widgetFactory-constant.html) annotation to improve the dev UX for widgets created in extension methods. It's currently only available in the master channel, so implementing this will...
such as: ```dart .slideX( curve: Curves.bounceIn, reverseCurve: Curves.bounceOut, ) ```
Hi – I'm noticing that following a fade out with a fade in, results in the widget not appearing at all. ```dart return Text('example').animate().fadeOut().then().fadeIn(); ``` The other way around, fading...
This may not be actionable but logging this just so we can track it and potentially chat about workarounds. # Issue When animations are delayed they force flutter to re-render...
Animation widget has its dimensions 1 px at the bottom and 1 px on the right side In this snipet container will be overflowed at the bottom by 1 px...
Added as described by #95
This issue already came up [here](https://github.com/gskinner/flutter_animate/issues/71) but was closed. Some of the animations I use on my app will make my widgets disappear when I use the web-app on mobile...