diff --git a/lib/Components/CustomAppBar.dart b/lib/Components/CustomAppBar.dart index f3dfe0b..e72125c 100644 --- a/lib/Components/CustomAppBar.dart +++ b/lib/Components/CustomAppBar.dart @@ -32,8 +32,8 @@ class _CustomAppBarState extends State { String cleanedTitle = widget.title.replaceAll('\n', ' ').replaceAll('
', ' '); - String formattedTitle = cleanedTitle.length > 35 - ? cleanedTitle.substring(0, 35) + '...' + String formattedTitle = cleanedTitle.length > 45 + ? cleanedTitle.substring(0, 45) + '...' : cleanedTitle; //final notchInset = MediaQuery.of(context).padding;