LCOV - code coverage report
Current view: top level - lib/exercises - exercises_button.dart Coverage Total Hit
Test: lcov.info Lines: 0.0 % 7 0
Test Date: 2025-05-10 20:26:13 Functions: - 0 0

            Line data    Source code
       1              : import 'package:amadeus_proto/constants.dart';
       2              : import 'package:flutter/material.dart';
       3              : import 'package:flutter_svg/svg.dart';
       4              : 
       5              : class ExerciseButton extends StatelessWidget {
       6            0 :   const ExerciseButton({super.key, required this.iconPath});
       7              : 
       8              :   final String iconPath;
       9              : 
      10            0 :   @override
      11              :   Widget build(BuildContext context) {
      12            0 :     return Container(
      13            0 :       decoration: BoxDecoration(
      14            0 :         borderRadius: BorderRadius.circular(smallBorderRadius),
      15              :       ),
      16            0 :       child: SvgPicture.asset(
      17            0 :         iconPath,
      18              :         fit: BoxFit.contain,
      19              :       ),
      20              :     );
      21              :   }
      22              : }
        

Generated by: LCOV version 2.3-1