- 上游: 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>
92 lines
2.6 KiB
Dart
92 lines
2.6 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 'contacts_logic.dart';
|
|
|
|
class ContactsPage extends StatelessWidget {
|
|
final logic = Get.find<ContactsLogic>();
|
|
|
|
ContactsPage({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Scaffold(
|
|
appBar: TitleBar.contacts(
|
|
onClickAddContacts: logic.addContacts,
|
|
),
|
|
backgroundColor: Styles.c_F8F9FA,
|
|
body: Obx(
|
|
() => SingleChildScrollView(
|
|
child: Column(
|
|
children: [
|
|
_buildItemView(
|
|
assetsName: ImageRes.newFriend,
|
|
label: StrRes.newFriend,
|
|
count: logic.friendApplicationCount,
|
|
onTap: logic.newFriend,
|
|
),
|
|
_buildItemView(
|
|
assetsName: ImageRes.newGroup,
|
|
label: StrRes.newGroupRequest,
|
|
count: logic.groupApplicationCount,
|
|
onTap: logic.newGroup,
|
|
),
|
|
10.verticalSpace,
|
|
_buildItemView(
|
|
assetsName: ImageRes.myFriend,
|
|
label: StrRes.myFriend,
|
|
onTap: logic.myFriend,
|
|
),
|
|
_buildItemView(
|
|
assetsName: ImageRes.myGroup,
|
|
label: StrRes.myGroup,
|
|
onTap: logic.myGroup,
|
|
),
|
|
],
|
|
),
|
|
),
|
|
),
|
|
);
|
|
}
|
|
|
|
Widget _buildItemView({
|
|
String? assetsName,
|
|
required String label,
|
|
Widget? icon,
|
|
int count = 0,
|
|
bool showRightArrow = true,
|
|
double? height,
|
|
Function()? onTap,
|
|
}) =>
|
|
Ink(
|
|
color: Styles.c_FFFFFF,
|
|
child: InkWell(
|
|
onTap: onTap,
|
|
child: Container(
|
|
height: height ?? 60.h,
|
|
padding: EdgeInsets.symmetric(horizontal: 16.w),
|
|
child: Row(
|
|
children: [
|
|
if (null != assetsName)
|
|
assetsName.toImage
|
|
..width = 42.w
|
|
..height = 42.h,
|
|
if (null != icon) icon,
|
|
12.horizontalSpace,
|
|
label.toText..style = Styles.ts_0C1C33_17sp,
|
|
const Spacer(),
|
|
if (count > 0) UnreadCountView(count: count),
|
|
4.horizontalSpace,
|
|
if (showRightArrow)
|
|
ImageRes.rightArrow.toImage
|
|
..width = 24.w
|
|
..height = 24.h,
|
|
],
|
|
),
|
|
),
|
|
),
|
|
);
|
|
}
|