LCOV - code coverage report
Current view: top level - theme - paddings.dart (source / functions) Hit Total Coverage
Test: lcov.info Lines: 1 1 100.0 %
Date: 2022-07-13 09:29:13 Functions: 0 0 -

          Line data    Source code
       1             : import 'package:basf_flutter_components/basf_flutter_components.dart';
       2             : import 'package:flutter/material.dart';
       3             : 
       4             : /// BASF custom Paddings
       5             : abstract class Paddings {
       6             :   /// Default screen padding used at BASF screens
       7             :   ///
       8             :   /// Example:
       9             :   /// ```dart
      10             :   /// Padding(
      11             :   ///   padding: Paddings.defaultScreenPadding,
      12             :   ///   child: MyScreen(),
      13             :   /// );
      14             :   /// ```
      15           1 :   static EdgeInsetsGeometry get defaultScreenPadding =>
      16             :       const EdgeInsets.fromLTRB(
      17             :         Dimens.paddingMediumLarge,
      18             :         Dimens.paddingMediumLarge,
      19             :         Dimens.paddingMediumLarge,
      20             :         Dimens.paddingMediumSmall,
      21             :       );
      22             : }

Generated by: LCOV version 1.16