Files
Redesnigned-Finamp/lib/screens/logs_screen.dart
T
Zakaria 1563409cb1
Build / Build for Android (push) Has been cancelled
Build / Build for iOS (push) Has been cancelled
first commit
2026-05-18 14:15:38 -04:00

27 lines
696 B
Dart

import 'package:flutter/material.dart';
import 'package:flutter_gen/gen_l10n/app_localizations.dart';
import '../components/LogsScreen/copy_logs_button.dart';
import '../components/LogsScreen/logs_view.dart';
import '../components/LogsScreen/share_logs_button.dart';
class LogsScreen extends StatelessWidget {
const LogsScreen({Key? key}) : super(key: key);
static const routeName = "/logs";
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text(AppLocalizations.of(context)!.logs),
actions: const [
ShareLogsButton(),
CopyLogsButton(),
],
),
body: const LogsView(),
);
}
}