diff --git a/wallpaper/lib/pages/mypage/mypage_view.dart b/wallpaper/lib/pages/mypage/mypage_view.dart index d95a10d..865249d 100644 --- a/wallpaper/lib/pages/mypage/mypage_view.dart +++ b/wallpaper/lib/pages/mypage/mypage_view.dart @@ -13,18 +13,30 @@ class MyPageView extends GetView { title: const Text(title), ), body: ListView( - children: const [ + children: [ 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"); + }, ), ], ),