account_manager_page.dart
1.49 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
import 'package:flutter/material.dart';
import 'package:one_poem/login/login_router.dart';
import 'package:one_poem/routers/fluro_navigator.dart';
import 'package:one_poem/widgets/click_item.dart';
import 'package:one_poem/widgets/load_image.dart';
import 'package:one_poem/widgets/my_app_bar.dart';
/// design/8设置/index.html#artboard1
class AccountManagerPage extends StatefulWidget {
const AccountManagerPage({Key? key}) : super(key: key);
@override
_AccountManagerPageState createState() => _AccountManagerPageState();
}
class _AccountManagerPageState extends State<AccountManagerPage> {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: const MyAppBar(
centerTitle: '账号管理',
),
body: Column(
children: <Widget>[
Stack(
children: <Widget>[
ClickItem(
title: '店铺logo',
onTap: () {}
),
const Positioned(
top: 8.0,
bottom: 8.0,
right: 40.0,
child: LoadAssetImage('shop/tx', width: 34.0),
)
],
),
ClickItem(
title: '修改密码',
content: '用于密码登录',
onTap: () => NavigatorUtils.push(context, LoginRouter.updatePasswordPage)
),
const ClickItem(
title: '绑定账号',
content: '15000000000',
),
],
),
);
}
}