mirror of
https://github.com/Xevion/paperless-mobile.git
synced 2025-12-06 11:15:48 -06:00
19 lines
510 B
Dart
19 lines
510 B
Dart
import 'package:flutter/material.dart';
|
|
import 'package:paperless_mobile/generated/l10n/app_localizations.dart';
|
|
import 'package:paperless_mobile/routes/typed/top_level/app_logs_route.dart';
|
|
|
|
class AppLogsTile extends StatelessWidget {
|
|
const AppLogsTile({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return ListTile(
|
|
leading: const Icon(Icons.subject),
|
|
title: Text(S.of(context)!.appLogs('')),
|
|
onTap: () {
|
|
AppLogsRoute().push(context);
|
|
},
|
|
);
|
|
}
|
|
}
|