LCOV - code coverage report
Current view: top level - src/navigation/transitions - right_to_left.dart (source / functions) Hit Total Coverage
Test: lcov.info Lines: 4 4 100.0 %
Date: 2022-11-04 14:47:16 Functions: 0 0 -

          Line data    Source code
       1             : import 'package:flutter/widgets.dart';
       2             : 
       3             : // ignore: public_member_api_docs
       4             : class RightToLeftTransition {
       5             :   // ignore: public_member_api_docs
       6           2 :   Widget buildTransition({
       7             :     required Animation<double> animation,
       8             :     required Widget child,
       9             :   }) {
      10           2 :     return SlideTransition(
      11           2 :       position: Tween<Offset>(
      12             :         begin: const Offset(1, 0),
      13             :         end: Offset.zero,
      14           2 :       ).animate(animation),
      15             :       child: child,
      16             :     );
      17             :   }
      18             : }

Generated by: LCOV version 1.16