mirror of
https://github.com/Xevion/paperless-mobile.git
synced 2025-12-05 23:15:42 -06:00
20 lines
572 B
Dart
20 lines
572 B
Dart
import 'package:flutter/material.dart';
|
|
import 'package:paperless_mobile/features/settings/view/widgets/biometric_authentication_setting.dart';
|
|
import 'package:paperless_mobile/generated/l10n/app_localizations.dart';
|
|
|
|
class SecuritySettingsPage extends StatelessWidget {
|
|
const SecuritySettingsPage({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Scaffold(
|
|
appBar: AppBar(title: Text(S.of(context)!.security)),
|
|
body: ListView(
|
|
children: const [
|
|
BiometricAuthenticationSetting(),
|
|
],
|
|
),
|
|
);
|
|
}
|
|
}
|