diff --git a/lib/pages/home/user_information_page.dart b/lib/pages/home/user_information_page.dart index 096555e..0ed8dc7 100644 --- a/lib/pages/home/user_information_page.dart +++ b/lib/pages/home/user_information_page.dart @@ -65,7 +65,7 @@ class UserInformationPage extends StatelessWidget { Text( controller.userData.value.nickName ?? "", style: TextStyle( - fontSize: 19.w, + fontSize: 22.w, color: const Color.fromRGBO(51, 51, 51, 1), fontWeight: FontWeight.w600 ), @@ -90,7 +90,7 @@ class UserInformationPage extends StatelessWidget { Text( "${controller.userData.value.age}", style: TextStyle( - fontSize: 9.w, + fontSize: 11.w, color: const Color.fromRGBO(255, 66, 236, 1) ), ) @@ -110,7 +110,7 @@ class UserInformationPage extends StatelessWidget { child: Text( "在线", style: TextStyle( - fontSize: 9.w, + fontSize: 11.w, color: const Color.fromRGBO(38, 199, 124, 1) ), ), @@ -136,7 +136,7 @@ class UserInformationPage extends StatelessWidget { Text( "实名", style: TextStyle( - fontSize: 9.w, + fontSize: 11.w, color: const Color.fromRGBO(160, 92, 255, 1) ), ) @@ -163,7 +163,7 @@ class UserInformationPage extends StatelessWidget { Text( "${controller.userData.value.age}", style: TextStyle( - fontSize: 9.w, + fontSize: 11.w, color: const Color.fromRGBO(120, 140, 255, 1) ), ) @@ -210,14 +210,14 @@ class UserInformationPage extends StatelessWidget { Text( "父母催婚找个结婚的", style: TextStyle( - fontSize: 11.w, + fontSize: 14.w, color: const Color.fromRGBO(144, 144, 144, 1) ), ), SizedBox(height: 11.w,), Wrap( - spacing: 7.w, - runSpacing: 7.w, + spacing: 12.w, + runSpacing: 12.w, children: [ ...controller.tagList.map((e){ return TagItem(label: e); @@ -228,14 +228,14 @@ class UserInformationPage extends StatelessWidget { if ((controller.userData.value.provinceName?.isNotEmpty ?? false)) Text( "IP属地:${controller.userData.value.provinceName}", style: TextStyle( - fontSize: 9.w, + fontSize: 12.w, color: const Color.fromRGBO(144, 144, 144, 1) ), ), Text( "动我ID:${userId}", style: TextStyle( - fontSize: 9.w, + fontSize: 12.w, color: const Color.fromRGBO(144, 144, 144, 1) ), ), @@ -462,8 +462,8 @@ class TagItem extends StatelessWidget { Widget build(BuildContext context) { return Container( padding: EdgeInsets.symmetric( - vertical: 2.w, - horizontal: 6.w + vertical: 5.w, + horizontal: 10.w ), decoration: BoxDecoration( borderRadius: BorderRadius.all(Radius.circular(13.w)), @@ -472,7 +472,7 @@ class TagItem extends StatelessWidget { child: Text( label, style: TextStyle( - fontSize: 11.w, + fontSize: 13.w, color: const Color.fromRGBO(51, 51, 51, 1) ), ),