mirror of
https://github.com/FoggedLens/deflock-app.git
synced 2026-03-23 12:20:47 +01:00
41 lines
1.2 KiB
Dart
41 lines
1.2 KiB
Dart
import 'package:flutter/material.dart';
|
|
import 'settings_screen_sections/auth_section.dart';
|
|
import 'settings_screen_sections/upload_mode_section.dart';
|
|
import 'settings_screen_sections/profile_list_section.dart';
|
|
import 'settings_screen_sections/queue_section.dart';
|
|
import 'settings_screen_sections/offline_areas_section.dart';
|
|
import 'settings_screen_sections/offline_mode_section.dart';
|
|
import 'settings_screen_sections/about_section.dart';
|
|
import 'settings_screen_sections/max_cameras_section.dart';
|
|
|
|
class SettingsScreen extends StatelessWidget {
|
|
const SettingsScreen({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Scaffold(
|
|
appBar: AppBar(title: const Text('Settings')),
|
|
body: ListView(
|
|
padding: const EdgeInsets.all(16),
|
|
children: const [
|
|
UploadModeSection(),
|
|
Divider(),
|
|
AuthSection(),
|
|
Divider(),
|
|
QueueSection(),
|
|
Divider(),
|
|
ProfileListSection(),
|
|
Divider(),
|
|
MaxCamerasSection(),
|
|
Divider(),
|
|
OfflineModeSection(),
|
|
Divider(),
|
|
OfflineAreasSection(),
|
|
Divider(),
|
|
AboutSection(),
|
|
],
|
|
),
|
|
);
|
|
}
|
|
}
|