- 上游: 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>
162 lines
5.0 KiB
Dart
162 lines
5.0 KiB
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 'mine_logic.dart';
|
|
|
|
class MinePage extends StatelessWidget {
|
|
final logic = Get.find<MineLogic>();
|
|
|
|
MinePage({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Scaffold(
|
|
backgroundColor: Styles.c_F8F9FA,
|
|
body: SingleChildScrollView(
|
|
child: Column(
|
|
children: [
|
|
Stack(
|
|
children: [
|
|
Container(
|
|
height: 138.h,
|
|
width: 1.sw,
|
|
color: Styles.c_0089FF,
|
|
child: ImageRes.mineHeaderBg.toImage,
|
|
),
|
|
Obx(() => _buildMyInfoView()),
|
|
],
|
|
),
|
|
10.verticalSpace,
|
|
_buildItemView(
|
|
icon: ImageRes.myInfo,
|
|
label: StrRes.myInfo,
|
|
onTap: logic.viewMyInfo,
|
|
isTopRadius: true,
|
|
),
|
|
_buildItemView(
|
|
icon: ImageRes.accountSetup,
|
|
label: StrRes.accountSetup,
|
|
onTap: logic.accountSetup,
|
|
),
|
|
_buildItemView(
|
|
icon: ImageRes.aboutUs,
|
|
label: StrRes.aboutUs,
|
|
onTap: logic.aboutUs,
|
|
),
|
|
_buildItemView(
|
|
icon: ImageRes.logout,
|
|
label: StrRes.logout,
|
|
onTap: logic.logout,
|
|
isBottomRadius: true,
|
|
),
|
|
],
|
|
),
|
|
),
|
|
);
|
|
}
|
|
|
|
Widget _buildMyInfoView() => Container(
|
|
height: 98.h,
|
|
margin: EdgeInsets.only(left: 16.w, right: 16.w, top: 90.h),
|
|
padding: EdgeInsets.symmetric(horizontal: 16.w),
|
|
decoration: BoxDecoration(
|
|
color: Styles.c_FFFFFF,
|
|
borderRadius: BorderRadius.circular(6.r),
|
|
),
|
|
child: Row(
|
|
children: [
|
|
AvatarView(
|
|
url: logic.imLogic.userInfo.value.faceURL,
|
|
text: logic.imLogic.userInfo.value.nickname,
|
|
width: 48.w,
|
|
height: 48.h,
|
|
textStyle: Styles.ts_FFFFFF_14sp,
|
|
),
|
|
10.horizontalSpace,
|
|
Expanded(
|
|
child: Column(
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
mainAxisAlignment: MainAxisAlignment.center,
|
|
children: [
|
|
(logic.imLogic.userInfo.value.nickname ?? '').toText..style = Styles.ts_0C1C33_17sp_medium,
|
|
4.verticalSpace,
|
|
GestureDetector(
|
|
behavior: HitTestBehavior.translucent,
|
|
onTap: logic.copyID,
|
|
child: Row(
|
|
mainAxisSize: MainAxisSize.min,
|
|
children: [
|
|
(logic.imLogic.userInfo.value.userID ?? '').toText..style = Styles.ts_8E9AB0_14sp,
|
|
ImageRes.mineCopy.toImage
|
|
..width = 16.w
|
|
..height = 16.h,
|
|
],
|
|
),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
GestureDetector(
|
|
behavior: HitTestBehavior.translucent,
|
|
onTap: logic.viewMyQrcode,
|
|
child: Row(
|
|
children: [
|
|
ImageRes.mineQr.toImage
|
|
..width = 18.w
|
|
..height = 18.h,
|
|
8.horizontalSpace,
|
|
ImageRes.rightArrow.toImage
|
|
..width = 24.w
|
|
..height = 24.h,
|
|
],
|
|
),
|
|
)
|
|
],
|
|
),
|
|
);
|
|
|
|
Widget _buildItemView({
|
|
required String icon,
|
|
required String label,
|
|
bool isTopRadius = false,
|
|
bool isBottomRadius = false,
|
|
Function()? onTap,
|
|
}) =>
|
|
Container(
|
|
margin: EdgeInsets.symmetric(horizontal: 16.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: 56.h,
|
|
padding: EdgeInsets.only(left: 12.w, right: 16.w),
|
|
child: Row(
|
|
children: [
|
|
icon.toImage
|
|
..width = 24.w
|
|
..height = 24.h,
|
|
11.horizontalSpace,
|
|
label.toText..style = Styles.ts_0C1C33_17sp,
|
|
const Spacer(),
|
|
ImageRes.rightArrow.toImage
|
|
..width = 24.w
|
|
..height = 24.h,
|
|
],
|
|
),
|
|
),
|
|
),
|
|
),
|
|
);
|
|
}
|