2023-02-16 19:36:39 +05:30
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
|
|
|
|
|
|
class ProgressPage extends StatelessWidget {
|
|
|
|
|
const ProgressPage({Key? key}) : super(key: key);
|
|
|
|
|
|
|
|
|
|
@override
|
|
|
|
|
Widget build(BuildContext context) {
|
|
|
|
|
return Container(
|
|
|
|
|
color: Colors.transparent,
|
2023-08-16 14:53:32 +05:30
|
|
|
child: const Center(
|
2023-02-16 19:36:39 +05:30
|
|
|
child: CircularProgressIndicator(),
|
|
|
|
|
),
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|