mirror of
https://github.com/supanadit/geo-smart-app.git
synced 2024-11-10 01:52:22 +00:00
25 lines
526 B
Dart
25 lines
526 B
Dart
|
import 'package:flutter/material.dart';
|
||
|
import 'package:geosmart/component/loader.dart';
|
||
|
|
||
|
class StartupPage extends StatelessWidget {
|
||
|
@override
|
||
|
Widget build(BuildContext context) {
|
||
|
return Scaffold(
|
||
|
body: Center(
|
||
|
child: Container(
|
||
|
child: Column(
|
||
|
children: <Widget>[
|
||
|
Loader(),
|
||
|
SizedBox(
|
||
|
height: 20.0,
|
||
|
),
|
||
|
Text("Preparing System")
|
||
|
],
|
||
|
),
|
||
|
height: 50,
|
||
|
),
|
||
|
),
|
||
|
);
|
||
|
}
|
||
|
}
|