fdsa
This commit is contained in:
parent
387323b9e4
commit
7750c80673
@ -13,18 +13,30 @@ class MyPageView extends GetView {
|
|||||||
title: const Text(title),
|
title: const Text(title),
|
||||||
),
|
),
|
||||||
body: ListView(
|
body: ListView(
|
||||||
children: const <Widget>[
|
children: <Widget>[
|
||||||
ListTile(
|
ListTile(
|
||||||
leading: Icon(Icons.web),
|
leading: const Icon(Icons.web),
|
||||||
title: Text('隐私协议'),
|
title: const Text('隐私协议'),
|
||||||
|
trailing: const Icon(Icons.arrow_forward_ios),
|
||||||
|
onTap: () {
|
||||||
|
|
||||||
|
},
|
||||||
),
|
),
|
||||||
ListTile(
|
ListTile(
|
||||||
leading: Icon(Icons.web),
|
leading: const Icon(Icons.supervisor_account),
|
||||||
title: Text('用户协议'),
|
title: const Text('用户协议'),
|
||||||
|
trailing: const Icon(Icons.arrow_forward_ios),
|
||||||
|
onTap: () {
|
||||||
|
|
||||||
|
},
|
||||||
),
|
),
|
||||||
ListTile(
|
ListTile(
|
||||||
leading: Icon(Icons.info),
|
leading: const Icon(Icons.info),
|
||||||
title: Text('系统版本 v1.0'),
|
title: const Text('系统版本'),
|
||||||
|
trailing: const Text("v1.0",style: TextStyle(fontSize: 14),),
|
||||||
|
onTap: () {
|
||||||
|
print(".....ssss");
|
||||||
|
},
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user