LCOV - code coverage report
Current view: top level - src/widgets - wrapper.dart (source / functions) Hit Total Coverage
Test: lcov.info Lines: 1 10 10.0 %
Date: 2021-10-03 15:54:23 Functions: 0 0 -

          Line data    Source code
       1             : import 'package:flutter/material.dart';
       2             : import 'package:widgetbook/src/widgets/story_render.dart';
       3             : 
       4             : import '../utils/utils.dart';
       5             : import 'controls_bar.dart';
       6             : 
       7             : class Editor extends StatelessWidget {
       8          10 :   const Editor({
       9             :     Key? key,
      10           0 :   }) : super(key: key);
      11             : 
      12           0 :   @override
      13             :   Widget build(BuildContext context) {
      14           0 :     return Column(
      15             :       crossAxisAlignment: CrossAxisAlignment.stretch,
      16           0 :       children: [
      17             :         const ControlsBar(),
      18             :         const SizedBox(
      19             :           height: 16,
      20             :         ),
      21           0 :         Expanded(
      22           0 :           child: Container(
      23           0 :             decoration: BoxDecoration(
      24           0 :               borderRadius: BorderRadius.circular(8),
      25           0 :               color: context.colorScheme.surface,
      26             :             ),
      27             :             child: const StoryRender(),
      28             :           ),
      29             :         ),
      30             :       ],
      31             :     );
      32             :   }
      33             : }

Generated by: LCOV version 1.15