- 上游: github.com/OpenIMSDK/openim-flutter-demo tag 3.8.3-patch.3 commit b3dfdb1e8aaeaaf6f0793e10cadd20d5c184a31f - 并行目录 mobile-next/ 原样导入(含 LICENSE),不覆盖现网 mobile/ - 锁定 Flutter 3.24.5 / Dart 3.5.4 / JDK 17 / Gradle 7.6.3 / AGP 7.3.1 - 实测 Android debug 与 release 构建均成功(见 docs/mobile-next-baseline-import.md) - 本提交可单独回退:git revert 1db1229(重写前) Co-authored-by: multica-agent <github@multica.ai>
140 lines
4.6 KiB
Dart
140 lines
4.6 KiB
Dart
import 'package:flutter/cupertino.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:flutter_screenutil/flutter_screenutil.dart';
|
|
import 'package:get/get.dart';
|
|
import 'package:openim_common/openim_common.dart';
|
|
|
|
import 'account_setup_logic.dart';
|
|
|
|
class AccountSetupPage extends StatelessWidget {
|
|
final logic = Get.find<AccountSetupLogic>();
|
|
|
|
AccountSetupPage({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Scaffold(
|
|
appBar: TitleBar.back(
|
|
title: StrRes.accountSetup,
|
|
),
|
|
backgroundColor: Styles.c_F8F9FA,
|
|
body: Obx(() => SingleChildScrollView(
|
|
child: Column(
|
|
children: [
|
|
10.verticalSpace,
|
|
_buildItemView(
|
|
label: StrRes.notDisturbMode,
|
|
switchOn: logic.isGlobalNotDisturb,
|
|
onChanged: (_) => logic.toggleNotDisturbMode(),
|
|
showSwitchButton: true,
|
|
isTopRadius: true,
|
|
),
|
|
_buildItemView(
|
|
label: StrRes.allowRing,
|
|
switchOn: logic.isAllowBeep,
|
|
onChanged: (_) => logic.toggleBeep(),
|
|
showSwitchButton: true,
|
|
),
|
|
_buildItemView(
|
|
label: StrRes.allowVibrate,
|
|
switchOn: logic.isAllowVibration,
|
|
onChanged: (_) => logic.toggleVibration(),
|
|
showSwitchButton: true,
|
|
isBottomRadius: true,
|
|
),
|
|
10.verticalSpace,
|
|
_buildItemView(
|
|
label: StrRes.forbidAddMeToFriend,
|
|
switchOn: !logic.isAllowAddFriend,
|
|
onChanged: (_) => logic.toggleForbidAddMeToFriend(),
|
|
showSwitchButton: true,
|
|
isTopRadius: true,
|
|
),
|
|
_buildItemView(
|
|
label: StrRes.blacklist,
|
|
onTap: logic.blacklist,
|
|
showRightArrow: true,
|
|
),
|
|
_buildItemView(
|
|
label: StrRes.languageSetup,
|
|
value: logic.curLanguage.value,
|
|
onTap: logic.languageSetting,
|
|
showRightArrow: true,
|
|
isBottomRadius: true,
|
|
),
|
|
10.verticalSpace,
|
|
_buildItemView(
|
|
label: StrRes.unlockSettings,
|
|
onTap: logic.unlockSetup,
|
|
showRightArrow: true,
|
|
isTopRadius: true,
|
|
),
|
|
_buildItemView(
|
|
label: StrRes.changePassword,
|
|
showRightArrow: true,
|
|
onTap: logic.changePwd,
|
|
),
|
|
_buildItemView(
|
|
label: StrRes.clearChatHistory,
|
|
textStyle: Styles.ts_FF381F_17sp,
|
|
onTap: logic.clearChatHistory,
|
|
showRightArrow: true,
|
|
isBottomRadius: true,
|
|
),
|
|
],
|
|
),
|
|
)),
|
|
);
|
|
}
|
|
|
|
Widget _buildItemView({
|
|
required String label,
|
|
TextStyle? textStyle,
|
|
String? value,
|
|
bool switchOn = false,
|
|
bool isTopRadius = false,
|
|
bool isBottomRadius = false,
|
|
bool showRightArrow = false,
|
|
bool showSwitchButton = false,
|
|
ValueChanged<bool>? onChanged,
|
|
Function()? onTap,
|
|
}) =>
|
|
Container(
|
|
margin: EdgeInsets.symmetric(horizontal: 10.w),
|
|
child: Ink(
|
|
decoration: BoxDecoration(
|
|
color: Styles.c_FFFFFF,
|
|
borderRadius: BorderRadius.only(
|
|
topRight: Radius.circular(isTopRadius ? 6.r : 0),
|
|
topLeft: Radius.circular(isTopRadius ? 6.r : 0),
|
|
bottomLeft: Radius.circular(isBottomRadius ? 6.r : 0),
|
|
bottomRight: Radius.circular(isBottomRadius ? 6.r : 0),
|
|
),
|
|
),
|
|
child: InkWell(
|
|
onTap: onTap,
|
|
child: Container(
|
|
height: 46.h,
|
|
padding: EdgeInsets.symmetric(horizontal: 16.w),
|
|
child: Row(
|
|
children: [
|
|
label.toText..style = textStyle ?? Styles.ts_0C1C33_17sp,
|
|
const Spacer(),
|
|
if (showSwitchButton)
|
|
CupertinoSwitch(
|
|
value: switchOn,
|
|
activeColor: Styles.c_0089FF,
|
|
onChanged: onChanged,
|
|
),
|
|
if (showRightArrow)
|
|
ImageRes.rightArrow.toImage
|
|
..width = 24.w
|
|
..height = 24.h,
|
|
],
|
|
),
|
|
),
|
|
),
|
|
),
|
|
);
|
|
}
|