【发布时间】:2021-07-29 15:55:36
【问题描述】:
在我的代码中,当用户登录时,我正在调整大小并尝试隐藏按钮。问题是登录按钮没有正确响应,原因不明。
Label:
halign: 'center'
valign: 'middle'
text_size: self.size
size_hint_x: .5
text: root.text
PrimaryButton:
text: "Manage" if (root.text != '') else ""
size_hint_x: .25 if (root.text != '') else 0
opacity: 1 if (root.text != '') else 0
disabled: False if (root.text != '') else True
on_release:
root.logout() if (root.text != '') else root.changeScreen("AccountCreation")
root.manager.transition.direction = "down"
PrimaryButton:
text: "Log Out" if (root.text != '') else "Log In"
size_hint_x: .25 if (root.text != '') else .5
on_release:
root.logout() if (root.text != '') else root.changeScreen("AccountCreation")
root.manager.transition.direction = "down"
【问题讨论】: