Camera capture, corner detection/refinement, and preview crop pipeline for trading cards. Co-authored-by: Cursor <cursoragent@cursor.com>
11 lines
268 B
Dart
11 lines
268 B
Dart
import 'package:flutter_test/flutter_test.dart';
|
|
|
|
import 'package:carddex_demo/main.dart';
|
|
|
|
void main() {
|
|
testWidgets('app builds', (tester) async {
|
|
await tester.pumpWidget(const CardScanDemoApp());
|
|
expect(find.text('卡牌扫描'), findsOneWidget);
|
|
});
|
|
}
|