增加广告组件,个人中心

This commit is contained in:
唐明明
2022-05-27 17:52:17 +08:00
parent 4a635f3570
commit d64bf95b25
269 changed files with 3960 additions and 309 deletions

View File

@@ -12,11 +12,26 @@ class _DtxPagesState extends State<DtxPages> {
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: const Text('DTX积分'),
title: const Text(
'DT积分',
style: TextStyle(
fontSize: 15.0,
),
),
shadowColor: Colors.transparent,
backgroundColor: Colors.white,
foregroundColor: Colors.black,
),
body: const Center(
child: Text('Dtx积分'),
body: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: const <Widget>[
Text('DTX行情'),
Text('个人资产信息'),
Text('DT积分管理'),
Text('行情交易走势'),
Text('DTX交易走势图'),
Text('DTX落槌量走势图'),
],
),
);
}