reword the loading page

pull/5/head
fuwa 4 years ago
parent e13c58568a
commit d5c139defc

@ -32,7 +32,7 @@ Widget build(BuildContext context, LoadingState state) {
// ), // ),
body: Container body: Container
( (
padding: const EdgeInsets.all(10.0), padding: const EdgeInsets.all(40.0),
child: Align child: Align
( (
alignment: Alignment.topLeft, alignment: Alignment.topLeft,
@ -41,18 +41,19 @@ Widget build(BuildContext context, LoadingState state) {
mainAxisAlignment: MainAxisAlignment.center, mainAxisAlignment: MainAxisAlignment.center,
children: <Widget> children: <Widget>
[ [
Expanded Spacer
( (
flex: 1, flex: 1,
child: SingleChildScrollView ),
( Text
child: Text (
( state.status,
state.status, style: Theme.of(context).textTheme.title,
style: Theme.of(context).textTheme.title, ),
) Spacer
) (
) flex: 1,
),
], ],
), ),
), ),