LCOV - code coverage report
Current view: top level - lib/widgets - loading_indicator.dart Coverage Total Hit
Test: lcov.info Lines: 50.0 % 2 1
Test Date: 2025-08-12 03:21:51 Functions: - 0 0

            Line data    Source code
       1              : import 'package:flutter/material.dart';
       2              : 
       3              : class LoadingIndicator extends StatelessWidget {
       4           73 :   const LoadingIndicator({super.key});
       5              : 
       6            0 :   @override
       7              :   Widget build(BuildContext context) {
       8              :     return const Center(
       9              :       child: Column(
      10              :         mainAxisAlignment: MainAxisAlignment.center,
      11              :         children: [
      12              :           CircularProgressIndicator(),
      13              :           SizedBox(height: 16),
      14              :           Text('로딩 중...', style: TextStyle(fontSize: 16)),
      15              :         ],
      16              :       ),
      17              :     );
      18              :   }
      19              : }
        

Generated by: LCOV version 2.3.1-1