feat(mobile-next): 导入官方 openim-flutter-demo 固定基线 3.8.3-patch.3 并完成双构建

- 上游: 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>
This commit is contained in:
编码工程师
2026-08-19 15:24:33 +08:00
co-authored by multica-agent
parent fa8584a73f
commit 8046ec7483
767 changed files with 57658 additions and 0 deletions
@@ -0,0 +1,10 @@
import 'package:get/get.dart';
import 'add_method_logic.dart';
class AddContactsMethodBinding extends Bindings {
@override
void dependencies() {
Get.lazyPut(() => AddContactsMethodLogic());
}
}
@@ -0,0 +1,17 @@
import 'package:flutter_openim_sdk/flutter_openim_sdk.dart';
import 'package:get/get.dart';
import 'package:openim/pages/contacts/add_by_search/add_by_search_logic.dart';
import 'package:openim/routes/app_navigator.dart';
class AddContactsMethodLogic extends GetxController {
scan() => AppNavigator.startScan();
addFriend() =>
AppNavigator.startAddContactsBySearch(searchType: SearchType.user);
createGroup() => AppNavigator.startCreateGroup(
defaultCheckedList: [OpenIM.iMManager.userInfo]);
addGroup() =>
AppNavigator.startAddContactsBySearch(searchType: SearchType.group);
}
@@ -0,0 +1,108 @@
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 'add_method_logic.dart';
class AddContactsMethodPage extends StatelessWidget {
final logic = Get.find<AddContactsMethodLogic>();
AddContactsMethodPage({super.key});
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: TitleBar.back(title: StrRes.add),
body: Column(
children: [
10.verticalSpace,
_buildItemView(
icon: ImageRes.scanBlue,
text: StrRes.scan,
hintText: StrRes.scanHint,
onTap: logic.scan,
),
_buildItemView(
icon: ImageRes.addFriendBlue,
text: StrRes.addFriend,
hintText: StrRes.addFriendHint,
onTap: logic.addFriend,
),
_buildItemView(
icon: ImageRes.createGroupBlue,
text: StrRes.createGroup,
hintText: StrRes.createGroupHint,
onTap: logic.createGroup,
),
_buildItemView(
icon: ImageRes.addGroupBLue,
text: StrRes.addGroup,
hintText: StrRes.addGroupHint,
onTap: logic.addGroup,
underline: false,
),
],
),
);
}
Widget _buildItemView({
required String icon,
required String text,
required String hintText,
bool underline = true,
Function()? onTap,
}) =>
Ink(
color: Styles.c_FFFFFF,
child: InkWell(
onTap: onTap,
child: SizedBox(
height: 74.h,
child: Row(
children: [
22.horizontalSpace,
icon.toImage
..width = 28.w
..height = 28.h,
16.horizontalSpace,
Expanded(
child: Container(
decoration: underline
? BoxDecoration(
border: BorderDirectional(
bottom: BorderSide(
color: Styles.c_E8EAEF,
width: .5,
),
),
)
: null,
child: Row(
children: [
Expanded(
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
crossAxisAlignment: CrossAxisAlignment.start,
children: [
text.toText..style = Styles.ts_0C1C33_17sp,
4.verticalSpace,
hintText.toText..style = Styles.ts_8E9AB0_12sp,
],
),
),
ImageRes.rightArrow.toImage
..width = 24.w
..height = 24.h,
16.horizontalSpace,
],
),
),
)
],
),
),
),
);
}