adguard-home-manager/lib/screens/settings/appbar.dart
2022-09-26 16:08:56 +02:00

16 lines
No EOL
453 B
Dart

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