Commit 36f325f15f4528cf77dd0f4d4b3db140bbff5cfa
1 parent
911794fd
feat:隐藏有效时长(未登录状态)
Showing
1 changed file
with
1 additions
and
1 deletions
lib/pages/home/widgets/BaseHomeHeaderWidget.dart
... | ... | @@ -79,7 +79,7 @@ class BaseHomeHeaderWidget extends StatelessWidget { |
79 | 79 | style: TextStyle(color: Colors.white, fontSize: 30.0), |
80 | 80 | )), |
81 | 81 | Offstage( |
82 | - offstage: AppConfigHelper.shouldHidePay(), | |
82 | + offstage: AppConfigHelper.shouldHidePay() || !UserUtil.isLogined(), | |
83 | 83 | child: Row(children: <Widget>[ |
84 | 84 | Image( |
85 | 85 | width: 20.0.w, | ... | ... |