mirror of
https://github.com/Xevion/paperless-mobile.git
synced 2025-12-05 23:15:42 -06:00
119 lines
3.8 KiB
Dart
119 lines
3.8 KiB
Dart
import 'package:flutter/material.dart';
|
|
import 'package:flutter_bloc/flutter_bloc.dart';
|
|
import 'package:paperless_mobile/constants.dart';
|
|
import 'package:paperless_mobile/core/widgets/paperless_logo.dart';
|
|
import 'package:paperless_mobile/extensions/flutter_extensions.dart';
|
|
import 'package:paperless_mobile/features/settings/cubit/application_settings_cubit.dart';
|
|
import 'package:paperless_mobile/features/settings/view/settings_page.dart';
|
|
import 'package:paperless_mobile/generated/l10n/app_localizations.dart';
|
|
|
|
import 'package:url_launcher/link.dart';
|
|
import 'package:url_launcher/url_launcher_string.dart';
|
|
|
|
class AppDrawer extends StatelessWidget {
|
|
const AppDrawer({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return SafeArea(
|
|
top: true,
|
|
child: Drawer(
|
|
child: Column(
|
|
children: [
|
|
Row(
|
|
children: [
|
|
const PaperlessLogo.green(),
|
|
Text(
|
|
"Paperless Mobile",
|
|
style: Theme.of(context).textTheme.titleMedium,
|
|
),
|
|
],
|
|
).padded(),
|
|
const Divider(),
|
|
ListTile(
|
|
dense: true,
|
|
title: Text(S.of(context)!.aboutThisApp),
|
|
leading: const Icon(Icons.info_outline),
|
|
onTap: () => _showAboutDialog(context),
|
|
),
|
|
ListTile(
|
|
dense: true,
|
|
leading: const Icon(Icons.bug_report_outlined),
|
|
title: Text(S.of(context)!.reportABug),
|
|
onTap: () {
|
|
launchUrlString(
|
|
'https://github.com/astubenbord/paperless-mobile/issues/new');
|
|
},
|
|
),
|
|
ListTile(
|
|
dense: true,
|
|
leading: const Icon(Icons.settings_outlined),
|
|
title: Text(
|
|
S.of(context)!.settings,
|
|
),
|
|
onTap: () => Navigator.of(context).push(
|
|
MaterialPageRoute(
|
|
builder: (context) => BlocProvider.value(
|
|
value: context.read<ApplicationSettingsCubit>(),
|
|
child: const SettingsPage(),
|
|
),
|
|
),
|
|
),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
);
|
|
}
|
|
|
|
void _showAboutDialog(BuildContext context) {
|
|
showAboutDialog(
|
|
context: context,
|
|
applicationIcon: const ImageIcon(
|
|
AssetImage('assets/logos/paperless_logo_green.png'),
|
|
),
|
|
applicationName: 'Paperless Mobile',
|
|
applicationVersion: packageInfo.version + '+' + packageInfo.buildNumber,
|
|
children: [
|
|
Text(S.of(context)!.developedBy('Anton Stubenbord')),
|
|
Link(
|
|
uri: Uri.parse('https://github.com/astubenbord/paperless-mobile'),
|
|
builder: (context, followLink) => GestureDetector(
|
|
onTap: followLink,
|
|
child: Text(
|
|
'https://github.com/astubenbord/paperless-mobile',
|
|
style: TextStyle(color: Theme.of(context).colorScheme.tertiary),
|
|
),
|
|
),
|
|
),
|
|
const SizedBox(height: 16),
|
|
Text(
|
|
'Credits',
|
|
style: Theme.of(context).textTheme.titleMedium,
|
|
),
|
|
_buildOnboardingImageCredits(),
|
|
],
|
|
);
|
|
}
|
|
|
|
Widget _buildOnboardingImageCredits() {
|
|
return Link(
|
|
uri: Uri.parse(
|
|
'https://www.freepik.com/free-vector/business-team-working-cogwheel-mechanism-together_8270974.htm#query=setting&position=4&from_view=author'),
|
|
builder: (context, followLink) => Wrap(
|
|
children: [
|
|
const Text('Onboarding images by '),
|
|
GestureDetector(
|
|
onTap: followLink,
|
|
child: Text(
|
|
'pch.vector',
|
|
style: TextStyle(color: Theme.of(context).colorScheme.tertiary),
|
|
),
|
|
),
|
|
const Text(' on Freepik.')
|
|
],
|
|
),
|
|
);
|
|
}
|
|
}
|