mirror of
https://github.com/JGeek00/adguard-home-manager.git
synced 2025-05-18 07:53:10 +00:00
Added logs screen and list
This commit is contained in:
parent
e657b2e626
commit
1235d6c75e
10 changed files with 666 additions and 2 deletions
17
lib/screens/logs/appbar.dart
Normal file
17
lib/screens/logs/appbar.dart
Normal 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);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue