Files
deflock-app/lib/screens/add_camera_screen.dart
T

22 lines
443 B
Dart
Raw Blame History

This file contains invisible Unicode characters
This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
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(
'AddCamera UI coming in Stage 3',
style: TextStyle(fontSize: 18),
),
),
);
}
}