store_audit_result_page.dart
1.77 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
import 'package:flutter/material.dart';
import 'package:one_poem/res/resources.dart';
import 'package:one_poem/routers/fluro_navigator.dart';
import 'package:one_poem/routers/routers.dart';
import 'package:one_poem/widgets/load_image.dart';
import 'package:one_poem/widgets/my_app_bar.dart';
import 'package:one_poem/widgets/my_button.dart';
/// design/2店铺审核/index.html#artboard2
class StoreAuditResultPage extends StatefulWidget {
const StoreAuditResultPage({Key? key}) : super(key: key);
@override
_StoreAuditResultPageState createState() => _StoreAuditResultPageState();
}
class _StoreAuditResultPageState extends State<StoreAuditResultPage> {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: const MyAppBar(
title: '审核结果',
),
body: Padding(
padding: const EdgeInsets.all(16.0),
child: Column(
children: <Widget>[
Gaps.vGap50,
const LoadAssetImage('store/icon_success',
width: 80.0,
height: 80.0,
),
Gaps.vGap12,
const Text(
'恭喜,店铺资料审核成功',
style: TextStyles.textSize16,
),
Gaps.vGap8,
Text(
'2021-02-21 15:20:10',
style: Theme.of(context).textTheme.subtitle2,
),
Gaps.vGap8,
Text(
'预计完成时间:02月28日',
style: Theme.of(context).textTheme.subtitle2,
),
Gaps.vGap24,
MyButton(
onPressed: () {
NavigatorUtils.push(context, Routes.home, clearStack: true);
},
text: '进入',
)
],
),
),
);
}
}