diff --git a/lib/ui/components/brand_header/brand_header.dart b/lib/ui/components/brand_header/brand_header.dart index 3151aff7..56be04df 100644 --- a/lib/ui/components/brand_header/brand_header.dart +++ b/lib/ui/components/brand_header/brand_header.dart @@ -14,6 +14,7 @@ class BrandHeader extends StatelessWidget { @override Widget build(final BuildContext context) => AppBar( + centerTitle: true, title: Padding( padding: const EdgeInsets.only(top: 4.0), child: Text(title), @@ -25,8 +26,5 @@ class BrandHeader extends StatelessWidget { onBackButtonPressed ?? () => Navigator.of(context).pop(), ) : null, - actions: const [ - SizedBox.shrink(), - ], ); }