mirror of
https://github.com/Xevion/paperless-mobile.git
synced 2025-12-10 14:07:59 -06:00
75 lines
2.7 KiB
Dart
75 lines
2.7 KiB
Dart
import 'package:flutter/material.dart';
|
|
import 'package:flutter_bloc/flutter_bloc.dart';
|
|
import 'package:paperless_mobile/core/bloc/paperless_server_information_cubit.dart';
|
|
import 'package:paperless_mobile/core/bloc/paperless_server_information_state.dart';
|
|
import 'package:paperless_mobile/features/settings/view/pages/application_settings_page.dart';
|
|
import 'package:paperless_mobile/features/settings/view/pages/security_settings_page.dart';
|
|
import 'package:paperless_mobile/generated/l10n/app_localizations.dart';
|
|
|
|
class SettingsPage extends StatelessWidget {
|
|
const SettingsPage({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Scaffold(
|
|
appBar: AppBar(
|
|
title: Text(S.of(context)!.settings),
|
|
),
|
|
bottomNavigationBar:
|
|
BlocBuilder<PaperlessServerInformationCubit, PaperlessServerInformationState>(
|
|
builder: (context, state) {
|
|
final info = state.information!;
|
|
return ListTile(
|
|
title: Text(
|
|
S.of(context)!.loggedInAs(info.username ?? 'unknown') + "@${info.host}",
|
|
style: Theme.of(context).textTheme.labelSmall,
|
|
textAlign: TextAlign.center,
|
|
),
|
|
subtitle: Text(
|
|
S.of(context)!.paperlessServerVersion +
|
|
' ' +
|
|
info.version.toString() +
|
|
' (API v${info.apiVersion})',
|
|
style: Theme.of(context).textTheme.labelSmall,
|
|
textAlign: TextAlign.center,
|
|
),
|
|
);
|
|
},
|
|
),
|
|
body: ListView(
|
|
children: [
|
|
ListTile(
|
|
// leading: const Icon(Icons.style_outlined),
|
|
title: Text(S.of(context)!.applicationSettings),
|
|
subtitle: Text(S.of(context)!.languageAndVisualAppearance),
|
|
onTap: () => _goto(const ApplicationSettingsPage(), context),
|
|
),
|
|
ListTile(
|
|
// leading: const Icon(Icons.security_outlined),
|
|
title: Text(S.of(context)!.security),
|
|
subtitle: Text(S.of(context)!.biometricAuthentication),
|
|
onTap: () => _goto(const SecuritySettingsPage(), context),
|
|
),
|
|
// ListTile(
|
|
// // leading: const Icon(Icons.storage_outlined),
|
|
// title: Text(S.of(context)!.storage),
|
|
// subtitle:
|
|
// Text(S.of(context)!.mangeFilesAndStorageSpace),
|
|
// onTap: () => _goto(const StorageSettingsPage(), context),
|
|
// ),
|
|
],
|
|
),
|
|
);
|
|
}
|
|
|
|
void _goto(Widget page, BuildContext context) {
|
|
Navigator.push(
|
|
context,
|
|
MaterialPageRoute(
|
|
builder: (context) => page,
|
|
maintainState: true,
|
|
),
|
|
);
|
|
}
|
|
}
|