Files
tongxunruanjian/mobile-next/lib/pages/mine/about_us/about_us_view.dart
T
编码工程师andmultica-agent 8046ec7483 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>
2026-08-19 15:24:33 +08:00

133 lines
4.4 KiB
Dart

import 'dart:io';
import 'package:flutter/cupertino.dart';
import 'package:flutter/material.dart';
import 'package:flutter_openim_sdk/flutter_openim_sdk.dart';
import 'package:flutter_screenutil/flutter_screenutil.dart';
import 'package:get/get.dart';
import 'package:openim_common/openim_common.dart';
import 'about_us_logic.dart';
class AboutUsPage extends StatelessWidget {
final logic = Get.find<AboutUsLogic>();
AboutUsPage({super.key});
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: TitleBar.back(title: StrRes.aboutUs),
backgroundColor: Styles.c_F8F9FA,
body: Column(
children: [
Container(
decoration: BoxDecoration(
color: Styles.c_FFFFFF,
borderRadius: BorderRadius.circular(6.r),
),
margin: EdgeInsets.symmetric(
horizontal: 10.w,
vertical: 10.h,
),
child: Column(
children: [
23.verticalSpace,
ImageRes.splashLogo.toImage
..width = 55.w
..height = 78.h,
10.verticalSpace,
Obx(() => '${logic.displayVersion}'.toText
..style = Styles.ts_0C1C33_14sp
..onTap = logic.copyVersion),
16.verticalSpace,
Container(
margin: EdgeInsets.symmetric(horizontal: 10.w),
color: Styles.c_E8EAEF,
height: .5,
),
GestureDetector(
behavior: HitTestBehavior.translucent,
onTap: logic.checkUpdate,
child: Container(
height: 57.h,
padding: EdgeInsets.symmetric(horizontal: 16.w),
child: Row(
children: [
StrRes.checkNewVersion.toText..style = Styles.ts_0C1C33_17sp,
const Spacer(),
ImageRes.rightArrow.toImage
..width = 24.w
..height = 24.h,
],
),
),
),
GestureDetector(
behavior: HitTestBehavior.translucent,
onTap: logic.uploadLogs,
child: Container(
height: 57.h,
padding: EdgeInsets.symmetric(horizontal: 16.w),
child: Row(
children: [
StrRes.uploadErrorLog.toText..style = Styles.ts_0C1C33_17sp,
const Spacer(),
ImageRes.rightArrow.toImage
..width = 24.w
..height = 24.h,
],
),
),
),
GestureDetector(
behavior: HitTestBehavior.translucent,
onTap: _showInputDialog,
child: Container(
height: 57.h,
padding: EdgeInsets.symmetric(horizontal: 16.w),
child: Row(
children: [
StrRes.uploadLogWithLine.toText..style = Styles.ts_0C1C33_17sp,
const Spacer(),
ImageRes.rightArrow.toImage
..width = 24.w
..height = 24.h,
],
),
),
),
],
),
),
],
),
);
}
void _showInputDialog() {
showDialog(
context: Get.context!,
builder: (ctx) {
return CupertinoAlertDialog(
title: StrRes.setLines.toText..style = Styles.ts_0C1C33_17sp,
content: CupertinoTextField(
controller: logic.lineTextController,
placeholder: logic.lineTextController.text,
keyboardType: TextInputType.number,
),
actions: [
CupertinoButton(
child: StrRes.confirm.toText..style = Styles.ts_0C1C33_17sp,
onPressed: () {
navigator?.pop();
final lineStr = logic.lineTextController.text.trim();
logic.uploadLogs(int.parse(lineStr));
},
)
],
);
});
}
}