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), ],