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

16 lines
454 B
Dart
Raw Normal View History

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