adguard-home-manager/lib/screens/settings/appbar.dart

16 lines
453 B
Dart
Raw Normal View History

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);
}