Files
rog_app/lib/pages/progress/progress.dart

15 lines
320 B
Dart
Raw Permalink Normal View History

2023-02-16 19:36:39 +05:30
import 'package:flutter/material.dart';
class ProgressPage extends StatelessWidget {
const ProgressPage({super.key});
2023-02-16 19:36:39 +05:30
@override
Widget build(BuildContext context) {
return Container(
color: Colors.transparent,
2023-09-03 23:37:41 +05:30
child: const Center(
2023-02-16 19:36:39 +05:30
child: CircularProgressIndicator(),
),
);
}
}