添加小区名称,昵称为空时显示错误

hmxc
小赖 4 years ago
parent bd49c8a6a1
commit 3b3b8aebac

@ -116,7 +116,7 @@ class _UserProfilePageState extends State<UserProfilePage> {
), ),
_buildTile( _buildTile(
'昵称', '昵称',
userProvider.userInfoModel.nickName.text.make(), (userProvider.userInfoModel?.nickName ?? '').text.make(),
onPressed: () { onPressed: () {
ChangeNickName().to(); ChangeNickName().to();
}, },

@ -24,7 +24,7 @@ class _SignUpPickPlotPageState extends State<SignUpPickPlotPage> {
body: ListView( body: ListView(
children: [ children: [
ListTile( ListTile(
title: 'PLACEHOLDER PLOT'.text.make(), title: '五象新区人才公寓'.text.make(),
onTap: SignUpPickBuildingPage().to, onTap: SignUpPickBuildingPage().to,
).material(color: Colors.white), ).material(color: Colors.white),
], ],

Loading…
Cancel
Save