geo-smart-app/lib/page/startup_page.dart

25 lines
525 B
Dart
Raw Normal View History

2020-07-28 18:11:47 +00:00
import 'package:flutter/material.dart';
import 'package:geosmart/component/loader.dart';
class StartupPage extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Scaffold(
body: Center(
2024-12-25 07:19:58 +00:00
child: SizedBox(
height: 50,
2020-07-28 18:11:47 +00:00
child: Column(
children: <Widget>[
Loader(),
SizedBox(
height: 20.0,
),
Text("Preparing System")
],
),
),
),
);
}
}