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 'send_verification_application_logic.dart';
class SendVerificationApplicationBinding extends Bindings {
@override
void dependencies() {
Get.lazyPut(() => SendVerificationApplicationLogic());
}
}
@@ -0,0 +1,69 @@
import 'package:flutter/cupertino.dart';
import 'package:flutter/services.dart';
import 'package:flutter_openim_sdk/flutter_openim_sdk.dart';
import 'package:get/get.dart';
import 'package:openim_common/openim_common.dart';
import '../group_profile_panel/group_profile_panel_logic.dart';
class SendVerificationApplicationLogic extends GetxController {
final inputCtrl = TextEditingController();
String? userID;
String? groupID;
JoinGroupMethod? joinGroupMethod;
bool get isEnterGroup => groupID != null;
bool get isAddFriend => userID != null;
@override
void onInit() {
userID = Get.arguments['userID'];
groupID = Get.arguments['groupID'];
joinGroupMethod = Get.arguments['joinGroupMethod'];
super.onInit();
}
void send() async {
if (isAddFriend) {
_applyAddFriend();
} else if (isEnterGroup) {
_applyEnterGroup();
}
}
_applyAddFriend() async {
try {
await LoadingView.singleton.wrap(
asyncFunction: () => OpenIM.iMManager.friendshipManager.addFriend(
userID: userID!,
reason: inputCtrl.text.trim(),
),
);
Get.back();
IMViews.showToast(StrRes.sendSuccessfully);
} catch (_) {
if (_ is PlatformException) {
if (_.code == '${SDKErrorCode.refuseToAddFriends}') {
IMViews.showToast(StrRes.canNotAddFriends);
return;
}
}
IMViews.showToast(StrRes.sendFailed);
}
}
_applyEnterGroup() {
LoadingView.singleton
.wrap(
asyncFunction: () => OpenIM.iMManager.groupManager.joinGroup(
groupID: groupID!,
reason: inputCtrl.text.trim(),
joinSource: joinGroupMethod == JoinGroupMethod.qrcode ? 4 : 3,
),
)
.then((value) => IMViews.showToast(StrRes.sendSuccessfully))
.then((value) => Get.back())
.catchError((e) => IMViews.showToast(StrRes.sendFailed));
}
}
@@ -0,0 +1,57 @@
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 'send_verification_application_logic.dart';
class SendVerificationApplicationPage extends StatelessWidget {
final logic = Get.find<SendVerificationApplicationLogic>();
SendVerificationApplicationPage({super.key});
@override
Widget build(BuildContext context) {
return TouchCloseSoftKeyboard(
child: Scaffold(
appBar: TitleBar.back(
title: logic.isEnterGroup ? StrRes.groupVerification : StrRes.friendVerification,
right: StrRes.send.toText
..style = Styles.ts_0C1C33_17sp
..onTap = logic.send,
),
backgroundColor: Styles.c_F8F9FA,
body: SingleChildScrollView(
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Padding(
padding: EdgeInsets.symmetric(vertical: 6.h, horizontal: 16.w),
child: (logic.isEnterGroup ? StrRes.sendEnterGroupApplication : StrRes.sendToBeFriendApplication).toText
..style = Styles.ts_8E9AB0_14sp,
),
Container(
height: 122.h,
color: Styles.c_FFFFFF,
padding: EdgeInsets.symmetric(vertical: 12.h),
child: TextField(
controller: logic.inputCtrl,
autofocus: true,
maxLines: 10,
maxLength: 20,
decoration: InputDecoration(
isDense: true,
border: InputBorder.none,
contentPadding: EdgeInsets.symmetric(
horizontal: 16.w,
),
),
),
),
],
),
),
),
);
}
}