Added logs screen and list

This commit is contained in:
Juan Gilsanz Polo 2022-09-30 23:33:57 +02:00
parent e657b2e626
commit 1235d6c75e
10 changed files with 666 additions and 2 deletions

View file

@ -0,0 +1,17 @@
import 'package:flutter/material.dart';
import 'package:flutter_gen/gen_l10n/app_localizations.dart';
class LogsAppBar extends StatelessWidget with PreferredSizeWidget {
const LogsAppBar({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return AppBar(
title: Text(AppLocalizations.of(context)!.logs),
centerTitle: true,
);
}
@override
Size get preferredSize => const Size.fromHeight(kToolbarHeight);
}