- 集成虹软 ArcSoft Face SDK,提供人脸检测、识别、活体检测功能 - 实现 Android 平台原生插件,包含 ArcPlugin 和 FaceEngineManager - 添加完整的人脸错误码枚举(586个错误码),覆盖 SDK 所有错误情况 - 创建人脸信息数据模型 FaceInfo,封装检测结果和特征数据 - 配置 Android 权限和依赖,包括相机、存储、网络等必要权限 - 添加方法通道实现,连接 Flutter 层与原生层通信 - 配置项目基础文件,包含 .gitignore、分析选项和元数据配置 - 实现单元测试框架,包含 Dart 和 Java 层的基本测试用例 - 添加示例应用配置,验证插件集成和基本功能使用 - 提供详细的开发指导文档 CLAUDE.md,说明架构和 API 使用方法
28 lines
916 B
Dart
28 lines
916 B
Dart
// This is a basic Flutter widget test.
|
|
//
|
|
// To perform an interaction with a widget in your test, use the WidgetTester
|
|
// utility in the flutter_test package. For example, you can send tap and scroll
|
|
// gestures. You can also use WidgetTester to find child widgets in the widget
|
|
// tree, read text, and verify that the values of widget properties are correct.
|
|
|
|
import 'package:flutter/material.dart';
|
|
import 'package:flutter_test/flutter_test.dart';
|
|
|
|
import 'package:arc_example/main.dart';
|
|
|
|
void main() {
|
|
testWidgets('Verify Platform version', (WidgetTester tester) async {
|
|
// Build our app and trigger a frame.
|
|
await tester.pumpWidget(const MyApp());
|
|
|
|
// Verify that platform version is retrieved.
|
|
expect(
|
|
find.byWidgetPredicate(
|
|
(Widget widget) => widget is Text &&
|
|
widget.data!.startsWith('Running on:'),
|
|
),
|
|
findsOneWidget,
|
|
);
|
|
});
|
|
}
|