25 lines
471 B
Dart
25 lines
471 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
class InitScreen extends StatelessWidget {
|
|
|
|
static final String route = '/';
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Container(
|
|
color: Colors.white,
|
|
child: Column(
|
|
children: <Widget>[
|
|
Expanded(
|
|
child: Container(),
|
|
),
|
|
SizedBox(
|
|
height: 4.0,
|
|
child: LinearProgressIndicator(),
|
|
)
|
|
],
|
|
),
|
|
);
|
|
}
|
|
}
|