mirror of
https://github.com/FoggedLens/deflock-app.git
synced 2026-03-31 09:19:20 +02:00
1000 camera warning limit
This commit is contained in:
@@ -88,8 +88,6 @@ flutter run
|
||||
## Roadmap
|
||||
|
||||
### Current Todo List
|
||||
- **Performance**:
|
||||
- 1000+ camera warning threshold for large datasets
|
||||
- **UX Polish**:
|
||||
- Fix "tiles loaded" indicator accuracy across different providers
|
||||
- Generic tile provider error messages (not always "OSM tiles slow")
|
||||
|
||||
@@ -29,7 +29,7 @@ class _MaxCamerasSectionState extends State<MaxCamerasSection> {
|
||||
Widget build(BuildContext context) {
|
||||
final appState = context.watch<AppState>();
|
||||
final current = appState.maxCameras;
|
||||
final showWarning = current > 250;
|
||||
final showWarning = current > 1000;
|
||||
return Column(
|
||||
crossAxisAlignment: CrossAxisAlignment.start,
|
||||
children: [
|
||||
|
||||
Reference in New Issue
Block a user