| LCOV - code coverage report | ||||||||||||||||||||||
|
||||||||||||||||||||||
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 |