fixed font of some appbar titles

This commit is contained in:
ashilkn 2022-06-09 16:35:15 +05:30
parent 06b94ac5bc
commit 4252d1dba0
2 changed files with 4 additions and 22 deletions

View file

@ -87,17 +87,8 @@ class _DeduplicatePageState extends State<DeduplicatePage> {
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(),

View file

@ -21,17 +21,8 @@ class _FreeSpacePageState extends State<FreeSpacePage> {
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(),