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