aboutsummaryrefslogtreecommitdiff
path: root/lib/widgets/loading_modal_widget.dart
blob: c19a4119f2d69d56942ccb2d78a321e9982ab5ac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import 'package:flutter/material.dart';

class LoadingModal extends StatelessWidget {
  const LoadingModal({super.key});

  @override
  Widget build(BuildContext context) {
    return const Center(
      child: Card(
        shape: CircleBorder(),
        child: Padding(
          padding: EdgeInsets.all(20.0),
          child: SizedBox(
            width: 200,
            height: 200,
            child: CircularProgressIndicator(value: null),
          ),
        ),
      ),
    );
  }
}