Files
rog_app/lib/pages/loading/loading_page.dart

18 lines
601 B
Dart
Raw Permalink Normal View History

2022-05-18 19:09:26 +05:30
import 'package:flutter/material.dart';
class LoadingPage extends StatelessWidget {
2023-12-07 10:20:44 +05:30
const LoadingPage({Key? key}) : super(key: key);
2022-05-18 19:09:26 +05:30
// 要検討ローディングインジケーターの値を固定値0.8)にしていますが、実際のローディング進捗に合わせて動的に変更することを検討してください。
//
2022-05-18 19:09:26 +05:30
@override
Widget build(BuildContext context) {
return Container(
2023-12-07 10:20:44 +05:30
alignment: Alignment.center,
margin: const EdgeInsets.only(top: 20),
child: const CircularProgressIndicator(
value: 0.8,
));
2022-05-18 19:09:26 +05:30
}
2023-12-07 10:20:44 +05:30
}