mirror of
https://github.com/FoggedLens/deflock-app.git
synced 2026-07-20 11:01:03 +02:00
22 lines
443 B
Dart
22 lines
443 B
Dart
import 'package:flutter/material.dart';
|
||
|
||
class AddCameraScreen extends StatelessWidget {
|
||
const AddCameraScreen({super.key});
|
||
|
||
@override
|
||
Widget build(BuildContext context) {
|
||
return Scaffold(
|
||
appBar: AppBar(
|
||
title: const Text('Add Camera'),
|
||
),
|
||
body: const Center(
|
||
child: Text(
|
||
'Add‑Camera UI coming in Stage 3',
|
||
style: TextStyle(fontSize: 18),
|
||
),
|
||
),
|
||
);
|
||
}
|
||
}
|
||
|