fixes, improvements, and cleanup. notably, custom camera profiles make a comeback.

This commit is contained in:
stopflock
2025-07-19 20:22:20 -05:00
parent e290e11c5b
commit f8d71d0c75
10 changed files with 375 additions and 45 deletions
-2
View File
@@ -3,7 +3,6 @@ import 'package:provider/provider.dart';
import 'app_state.dart';
import 'screens/home_screen.dart';
import 'screens/add_camera_screen.dart';
import 'screens/settings_screen.dart';
void main() {
@@ -28,7 +27,6 @@ class FlockMapApp extends StatelessWidget {
),
routes: {
'/': (context) => const HomeScreen(),
'/add': (context) => const AddCameraScreen(),
'/settings': (context) => const SettingsScreen(),
},
initialRoute: '/',