From 3b3b8aebac92d258a95f4278b151bf50ccb382b7 Mon Sep 17 00:00:00 2001 From: laiiihz Date: Fri, 12 Mar 2021 10:16:57 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E5=B0=8F=E5=8C=BA=E5=90=8D?= =?UTF-8?q?=E7=A7=B0=EF=BC=8C=E6=98=B5=E7=A7=B0=E4=B8=BA=E7=A9=BA=E6=97=B6?= =?UTF-8?q?=E6=98=BE=E7=A4=BA=E9=94=99=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/pages/personal/user_profile_page.dart | 2 +- lib/pages/sign/sign_up/sign_up_pick_plot_page.dart | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/pages/personal/user_profile_page.dart b/lib/pages/personal/user_profile_page.dart index ff4bc6be..275843bb 100644 --- a/lib/pages/personal/user_profile_page.dart +++ b/lib/pages/personal/user_profile_page.dart @@ -116,7 +116,7 @@ class _UserProfilePageState extends State { ), _buildTile( '昵称', - userProvider.userInfoModel.nickName.text.make(), + (userProvider.userInfoModel?.nickName ?? '').text.make(), onPressed: () { ChangeNickName().to(); }, diff --git a/lib/pages/sign/sign_up/sign_up_pick_plot_page.dart b/lib/pages/sign/sign_up/sign_up_pick_plot_page.dart index 9b21bb21..0fc573b9 100644 --- a/lib/pages/sign/sign_up/sign_up_pick_plot_page.dart +++ b/lib/pages/sign/sign_up/sign_up_pick_plot_page.dart @@ -24,7 +24,7 @@ class _SignUpPickPlotPageState extends State { body: ListView( children: [ ListTile( - title: 'PLACEHOLDER PLOT'.text.make(), + title: '五象新区人才公寓'.text.make(), onTap: SignUpPickBuildingPage().to, ).material(color: Colors.white), ],