first commit
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
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(),
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user