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:
@@ -0,0 +1,10 @@
|
||||
import 'package:get/get.dart';
|
||||
|
||||
import 'discover_logic.dart';
|
||||
|
||||
class DiscoverBinding extends Bindings {
|
||||
@override
|
||||
void dependencies() {
|
||||
Get.lazyPut(() => DiscoverLogic());
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,30 @@
|
||||
import 'package:get/get.dart';
|
||||
import 'package:openim/core/controller/app_controller.dart';
|
||||
import 'package:openim_common/openim_common.dart';
|
||||
import 'package:pull_to_refresh_new/pull_to_refresh.dart';
|
||||
|
||||
class DiscoverLogic extends GetxController {
|
||||
final refreshCtrl = RefreshController();
|
||||
final appLogic = Get.find<AppController>();
|
||||
final list = <Rx<UniMPInfo>>[].obs;
|
||||
final url = ''.obs;
|
||||
|
||||
@override
|
||||
void onReady() {
|
||||
super.onReady();
|
||||
|
||||
final temp = appLogic.clientConfigMap['discoverPageURL'];
|
||||
|
||||
if (temp == null) {
|
||||
appLogic.queryClientConfig().then((value) {
|
||||
if (value['discoverPageURL'] == null) {
|
||||
url.value = 'https://www.openim.io';
|
||||
} else {
|
||||
url.value = value['discoverPageURL'];
|
||||
}
|
||||
});
|
||||
} else {
|
||||
url.value = temp;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,24 @@
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:get/get.dart';
|
||||
import 'package:openim_common/openim_common.dart';
|
||||
|
||||
import 'discover_logic.dart';
|
||||
|
||||
class DiscoverPage extends StatelessWidget {
|
||||
final logic = Get.find<DiscoverLogic>();
|
||||
|
||||
DiscoverPage({super.key});
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return Scaffold(
|
||||
appBar: TitleBar.workbench(),
|
||||
backgroundColor: Styles.c_F8F9FA,
|
||||
body: _buildBody(),
|
||||
);
|
||||
}
|
||||
|
||||
Widget _buildBody() {
|
||||
return Obx(() => H5Container(url: logic.url.value));
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user