transitions_component.dart 302 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 import 'package:flutter/widgets.dart'; class TransitionComponent { Widget buildChildWithTransition( BuildContext context, Curve curve, Alignment alignment, Animation<double> animation, Animation<double> secondaryAnimation, Widget child) { return child; } }