Line data Source code
1 : import 'package:flutter/widgets.dart'; 2 : 3 : class TransitionComponent { 4 1 : Widget buildChildWithTransition( 5 : BuildContext context, 6 : Animation<double> animation, 7 : Animation<double> secondaryAnimation, 8 : Widget child) { 9 : return child; 10 : } 11 : }