wireless camera app for Android

Stream a phone's camera to a tablet over WiFi/hotspot.
WebSocket transport with native YUV-to-JPEG encoding,
UDP auto-discovery, remote control (zoom, flash, camera switch,
rotate, mirror) from the viewer.
This commit is contained in:
2026-03-06 18:14:27 +00:00
commit 1660696d7f
32 changed files with 1962 additions and 0 deletions

12
test/widget_test.dart Normal file
View File

@@ -0,0 +1,12 @@
import 'package:flutter_test/flutter_test.dart';
import 'package:external_cam/main.dart';
void main() {
testWidgets('app renders home screen', (tester) async {
await tester.pumpWidget(const ExternalCamApp());
expect(find.text('External Cam'), findsOneWidget);
expect(find.text('Camera'), findsOneWidget);
expect(find.text('Viewer'), findsOneWidget);
});
}