From 4252d1dba0bb31c3b4ac3a6af55ecbc4c4f75dc7 Mon Sep 17 00:00:00 2001 From: ashilkn Date: Thu, 9 Jun 2022 16:35:15 +0530 Subject: [PATCH] fixed font of some appbar titles --- lib/ui/deduplicate_page.dart | 13 ++----------- lib/ui/free_space_page.dart | 13 ++----------- 2 files changed, 4 insertions(+), 22 deletions(-) diff --git a/lib/ui/deduplicate_page.dart b/lib/ui/deduplicate_page.dart index d5cf923ad..afbb1e9a7 100644 --- a/lib/ui/deduplicate_page.dart +++ b/lib/ui/deduplicate_page.dart @@ -87,17 +87,8 @@ class _DeduplicatePageState extends State { return Scaffold( appBar: AppBar( elevation: 0, - title: Hero( - tag: "deduplicate", - child: Material( - type: MaterialType.transparency, - child: Text( - "Deduplicate Files", - style: TextStyle( - fontSize: 18, - ), - ), - ), + title: Text( + "Deduplicate Files", ), ), body: _getBody(), diff --git a/lib/ui/free_space_page.dart b/lib/ui/free_space_page.dart index c7c01b097..2cdf8c684 100644 --- a/lib/ui/free_space_page.dart +++ b/lib/ui/free_space_page.dart @@ -21,17 +21,8 @@ class _FreeSpacePageState extends State { return Scaffold( appBar: AppBar( elevation: 0, - title: Hero( - tag: "free_up_space", - child: Material( - type: MaterialType.transparency, - child: Text( - "Free up space", - style: TextStyle( - fontSize: 18, - ), - ), - ), + title: Text( + "Free up space", ), ), body: _getBody(),