- Changed window size to mobile phone format (400x800) - Removed width condition for ActiveProxyFooter - now always visible - Added run-umbrix.sh launch script with icon copying - Stats cards now display on all screen sizes
31 lines
1.0 KiB
Dart
31 lines
1.0 KiB
Dart
import 'package:fluentui_system_icons/fluentui_system_icons.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:umbrix/core/localization/translations.dart';
|
|
import 'package:umbrix/core/router/router.dart';
|
|
import 'package:hooks_riverpod/hooks_riverpod.dart';
|
|
|
|
/// Секция "Логи и отладка" в настройках
|
|
class LogsSettingTiles extends HookConsumerWidget {
|
|
const LogsSettingTiles({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context, WidgetRef ref) {
|
|
final t = ref.watch(translationsProvider);
|
|
|
|
return Column(
|
|
children: [
|
|
// Переход на страницу логов
|
|
ListTile(
|
|
title: Text(t.logs.pageTitle),
|
|
subtitle: const Text('Просмотр логов приложения и ядра'),
|
|
leading: const Icon(FluentIcons.document_text_20_regular),
|
|
trailing: const Icon(FluentIcons.chevron_right_20_regular),
|
|
onTap: () {
|
|
const LogsOverviewRoute().push(context);
|
|
},
|
|
),
|
|
],
|
|
);
|
|
}
|
|
}
|