From 2beeac8159e998aa60727f96845f8583204b2d35 Mon Sep 17 00:00:00 2001 From: YakumoChen Date: Tue, 4 Nov 2025 21:47:41 +0800 Subject: [PATCH] =?UTF-8?q?=E6=8E=92=E7=89=88=E4=BF=A1=E6=81=AF=E9=A1=B5?= =?UTF-8?q?=E5=92=8C=E7=94=A8=E6=88=B7=E8=AF=A6=E6=83=85=E9=A1=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- assets/chat_btn.png | Bin 0 -> 618 bytes lib/pages/user_info_page.dart | 51 ++++++++++++++++++++++++++++++++++ 2 files changed, 51 insertions(+) create mode 100644 assets/chat_btn.png diff --git a/assets/chat_btn.png b/assets/chat_btn.png new file mode 100644 index 0000000000000000000000000000000000000000..5eb0385b5ffe9248798bca12dc82cecb4b8366a8 GIT binary patch literal 618 zcmV-w0+s!VP)Px#1am@3R0s$N2z&@+hyVZr6iGxuRA_v)_o<|l5L;x8m0ef?>IWikz4k@8`@q9_1>G3KQuj#T@nc1Pl9 z8Q)+bkCMatHligqITjH|OOw-ei7MrH;sr=<6ostDn0sUYvv@nJwBO{Xo)z?YN{w`6 z1-3}dl3oLLrJ_M3X(tF5W3TlTA+VOL9VzZWw-Yad^lQMLu*b*5pqtd~t_wN;z}xLo7cR}Q!>!1VxU zn(C8Cm7N76_D4J9rl1J+-5)LS^zycY{n!Uv zJ1{-Oy@}cLBW*j|3s { fontSize: 18.w, color: const Color.fromRGBO(144, 144, 144, 1) ), + ), + Spacer(), + Row( + mainAxisAlignment: MainAxisAlignment.spaceBetween, + children: [ + Container( + width: 493.w, + height: 76.w, + decoration: BoxDecoration( + borderRadius: BorderRadius.all(Radius.circular(76.w)), + color: const Color.fromRGBO(51, 51, 51, 1) + ), + child: Row( + mainAxisAlignment: MainAxisAlignment.center, + children: [ + Image.asset( + "assets/chat_btn.png", + width: 26.w, + height: 24.w, + ), + SizedBox(width: 8.w,), + Text( + "发消息", + style: TextStyle( + fontSize: 31.w, + color: Colors.white, + fontWeight: FontWeight.w500 + ), + ) + ], + ), + ), + Container( + width: 162.w, + height: 76.w, + decoration: BoxDecoration( + borderRadius: BorderRadius.all(Radius.circular(76.w)), + color: const Color.fromRGBO(117, 98, 249, 1) + ), + child: Center( + child: Text( + "关注", + style: TextStyle( + fontSize: 31.w, + color: Colors.white, + fontWeight: FontWeight.w500 + ), + ), + ), + ), + ], ) ], ),