This commit is contained in:
wyf
2025-11-14 12:01:07 +08:00
parent 776275aa3d
commit 7e44998240
24 changed files with 409 additions and 187 deletions

View File

@@ -572,7 +572,7 @@ class _OtherLoginPageState extends State<OtherLoginPage> {
color: themeController
.currentColor.sc2,
fontSize: AppConstants()
.title_text_fontSize,
.middler_text_fontSize,
letterSpacing: 0,
),
),
@@ -597,9 +597,10 @@ class _OtherLoginPageState extends State<OtherLoginPage> {
onTap: () async {
try {
DailyLogUtils.writeLog("点击登录");
bool agree =
loginController.model.register_agree!;
if (!agree) {
if (loginController.model.register_agree ==
null ||
loginController.model.register_agree! ==
false) {
TopSlideNotification.show(
context,
text: "登录页.未同意协议".tr,
@@ -922,7 +923,7 @@ class _OtherLoginPageState extends State<OtherLoginPage> {
Row(
mainAxisSize: MainAxisSize.max,
mainAxisAlignment: MainAxisAlignment.center,
children: [
children: [
Obx(() {
var aa =
loginController.model.isWeChatNotInstalled;